-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (34 loc) · 1016 Bytes
/
Cargo.toml
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
[package]
name = "bfsp"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[dependencies]
blake3 = { version = "1", features = ["rayon"] }
anyhow = { version = "1" }
uuid = { version = "1", features = ["v4"] }
chacha20poly1305 = { version = "0.10", default-features = false, features = ["std", "getrandom"] }
zstd = { version = "0.13" }
ruzstd = { version = "0.7" }
log = "0.4"
serde = { version = "1", features = ["derive"] }
thiserror = { version = "1" }
prost = "0.13"
bytes = "1"
rand = { version = "0.8", features = ["std"] }
base64 = { version = "0.22" }
argon2 = { version = "0.5" }
prost-types = "0.13"
[build-dependencies]
prost-build = { version = "0.13" }
[dev-dependencies]
tokio = { version = "1", features = [
"fs",
"io-util",
"macros",
"rt-multi-thread",
] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
sqlx = { version = "0.8", features = ["postgres"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }