-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
50 lines (46 loc) · 1.4 KB
/
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
42
43
44
45
46
47
48
49
50
[workspace]
resolver = "2"
members = [
"crates/*"
]
[workspace.package]
edition = "2021"
[workspace.dependencies]
moss = { git = "https://github.com/serpent-os/tools.git" }
stone = { git = "https://github.com/serpent-os/tools.git" }
axum = "0.7.2"
base64 = "0.21"
bitflags = "2.4.1"
bytes = "1.5"
chrono = "0.4.30"
color-eyre = "0.6.2"
derive_more = "0.99.17"
flate2 = "1.0"
futures = "0.3.30"
hex = "0.4.3"
http = "1.0"
http-serde = "2.0"
itertools = "0.12.0"
prost = "0.12.3"
rand = "0.8.5"
serde_json = "1.0"
sha2 = "0.10.8"
thiserror = "1.0.56"
tokio-stream = "0.1.14"
tokio-util = "0.7"
toml = "0.8.8"
tracing = "0.1.40"
url = "2.5.2"
clap = { version = "4.4", features = ["derive"] }
ed25519-dalek = { version = "2.1.0", features = ["rand_core", "pkcs8", "pem"] }
jsonwebtoken = { version = "9.2.0", default-features = false }
reqwest = { version = "0.12.9", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
sqlx = { version = "=0.8.0", features = ["sqlite", "chrono", "uuid", "runtime-tokio"] }
strum = { version = "0.25", features = ["derive"] }
tokio = { version = "1.35.1", features = ["full"] }
tower = { version = "0.4.13", features = ["util"] }
tower-http = { version = "0.5.1", features = ["fs"] }
tracing-futures = { version = "0.2.5", features = ["futures-03"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
uuid = { version = "1.6.1", features = ["v4"] }