-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 727 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "kvmap"
version = "0.1.8"
edition = "2024"
description = "A path-driven, namespaced data store for Rust, powered by SQLite."
license = "MIT"
repository = "https://github.com/canmi21/kvmap"
readme = "README.md"
keywords = ["network", "server", "filesystem", "pathmap", "router"]
categories = ["network-programming", "web-programming", "development-tools"]
[lib]
path = "src/lib.rs"
crate-type = ["lib"]
[[example]]
name = "demo"
path = "examples/demo.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
fancy-log = "0.1"
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite"] }
thiserror = "2"
shellexpand = "3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"