-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (53 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
67 lines (53 loc) · 1.46 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[workspace]
members = ["fvfs-core", "fvfsd", "fvfsc", "fvfs-bench"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Freddie V"]
license = "MIT"
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["rt"] }
# HTTP
axum = { version = "0.7", features = ["macros"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["trace"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Storage
rusqlite = { version = "0.31", features = ["chrono"] }
bytes = "1"
sha2 = "0.10"
hex = "0.4"
# AWS / S3
aws-config = { version = "1", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1"
# FUSE (optional, requires libfuse3-dev on Linux)
# Note: fuser is NOT declared optional here; optionality is per-crate via `dep:fuser`
fuser = { version = "0.14" }
libc = "0.2"
# Discovery
mdns-sd = "0.11"
# Parallelism
rayon = "1"
# Error handling
anyhow = "1"
thiserror = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
# CLI
clap = { version = "4", features = ["derive", "env"] }
# Misc
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4"] }
futures = "0.3"
# Benchmarks
criterion = { version = "0.5", features = ["async_tokio", "html_reports"] }
tempfile = "3"