-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (42 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
47 lines (42 loc) · 1.11 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "knowledge"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "knowledge"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "migrate"] }
prost = "0.13"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1", features = ["v7", "serde"] }
lbug = "0.15.2"
hmac = "0.12"
sha2 = "0.10"
getrandom = "0.2"
rmp-serde = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_bytes = "0.11"
chrono = { version = "0.4", features = ["serde"] }
fuser = "0.17"
time = { version = "0.3", features = ["formatting", "macros"] }
libc = "0.2"
dirs = "5"
thiserror = "2"
toml = "0.8"
zip = { version = "2", default-features = false, features = ["deflate"] }
notify = { version = "7", default-features = false, features = ["macos_kqueue"] }
shellexpand = "3"
regex = "1"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
tempfile = "3"
[build-dependencies]
prost-build = "0.13"
[[bench]]
name = "graph_scale"
harness = false