forked from project-senjuko/conch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (42 loc) · 1.3 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
[package]
name = "senjuko-conch"
version = "0.1.0"
edition = "2021"
rust-version = "1.67"
build = "build.rs"
[[bin]]
name = "conch-tool"
path = "tool/main.rs"
[workspace]
members = [
"src/network/protocol/jce/frame",
]
[dependencies]
jce = { path = "src/network/protocol/jce/frame", package = "cookie-jce" }
anyhow = "1.0.75"
async-graphql = "5.0.10"
async-graphql-axum = "5.0.10"
axum = "0.6.20"
axum-extra = { version = "0.6.0", features = ["spa"] }
axum-server = { version = "0.5.1", features = ["tls-rustls"] }
bytes = "1.5.0"
clap = { version = "4.4", features = ["derive", "cargo", "wrap_help", "env"] }
jsonwebtoken = "8.3.0"
md5 = "0.7.0"
once_cell = "1.18.0"
prost = "0.12.1"
rand = "0.8.5"
reqwest = { version = "0.11.20", features = ["json", "rustls-tls-manual-roots"], default-features = false }
rmp-serde = "1.1.2"
serde = { version = "1.0.168", features = ["derive"] }
thiserror = "1.0.49"
time = { version = "0.3.29", features = ["formatting", "local-offset"] }
tokio = { version = "1.32.0", features = ["full"] }
toml = "0.7.7"
tower-http = { version = "0.4.4", features = ["fs"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
trust-dns-resolver = "0.22.0"
uuid = { version = "1.4.1", features = ["v4", "fast-rng"] }
[build-dependencies]
prost-build = "0.11.9"