-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (27 loc) · 951 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
[workspace]
resolver = "2"
members = [ "chamber-cli",
"chamber-core",
"chamber-crypto",
"chamber-sdk",
"chamber-server"
, "chamber-shared"]
[workspace.dependencies]
axum = "0.7.4"
bincode = "1.3.3"
chrono = { version = "0.4.31", features = ["clock", "serde"] }
hyper = { version = "0.14", features = ["full"] }
nanoid = "0.4.0"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
tokio = { version = "1.28.2", features = ["sync", "macros"] }
ring = { version = "0.17.7", features = ["std"] }
tower = "0.4.13"
tracing = "0.1.40"
typenum = "1.17.0"
sqlx = { version = "0.7.3", features = ["runtime-tokio-native-tls", "postgres", "macros"] }
generic-array = { version = "0.14.7", features = ["zeroize"] }
argon2 = "0.5.2"
ed25519-dalek = { version = "2.1.0", features = ["rand_core"] }
reqwest = { version = "0.11.22", features = ["json", "blocking", "multipart"] }
thiserror = "1.0.59"