-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (63 loc) · 1.87 KB
/
Cargo.toml
File metadata and controls
65 lines (63 loc) · 1.87 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
[workspace]
resolver = "2"
members = [
"crates/zgrok-protocol",
"crates/zgrok-agent",
"crates/zgrok-edge",
"crates/zgrok-control",
"crates/zgrok-common",
"crates/zgrok-integration-tests",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["zgrok contributors"]
license = "MIT"
repository = "https://github.com/copyleftdev/zgrok"
[workspace.dependencies]
bytes = "1"
thiserror = "2"
bitflags = "2"
tokio = { version = "1", features = ["sync", "rt", "macros", "net", "io-util", "time"] }
tokio-util = { version = "0.7", features = ["codec"] }
tokio-rustls = "0.26"
rustls = "0.23"
rustls-pki-types = "1"
webpki-roots = "0.26"
dashmap = "6"
parking_lot = "0.12"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "serde"] }
clap = { version = "4", features = ["derive", "env"] }
anyhow = "1"
toml = "0.8"
dirs = "6"
tempfile = "3"
tracing = "0.1"
hyper = { version = "1", features = ["client", "http1"] }
hyper-util = { version = "0.1", features = ["client", "client-legacy", "http1", "tokio"] }
http = "1"
http-body = "1"
http-body-util = "0.1"
rand = "0.9"
console = "0.15"
indicatif = "0.17"
chrono = { version = "0.4", features = ["serde"] }
rustls-pemfile = "2"
ratatui = "0.29"
crossterm = "0.28"
unicode-width = "0.2"
arboard = "3"
axum = { version = "0.8", features = ["json"] }
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.6", features = ["trace"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "uuid", "chrono"] }
governor = { version = "0.8", features = ["dashmap"] }
metrics = "0.24"
metrics-exporter-prometheus = "0.16"
opentelemetry = "0.27"
opentelemetry_sdk = { version = "0.27", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.27", features = ["grpc-tonic"] }
opentelemetry-semantic-conventions = "0.27"
tracing-opentelemetry = "0.28"