-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
99 lines (88 loc) · 2.48 KB
/
Copy pathCargo.toml
File metadata and controls
99 lines (88 loc) · 2.48 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[package]
name = "intermesh"
version = "0.1.0"
edition = "2021"
publish = false
[workspace]
members = ["xtask"]
[features]
test-perf = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.99"
arc-swap = "1.8.0"
async-trait = "0.1"
axum = "0.8.4"
base64 = "0.22.1"
clap = { version = "4.5.47", features = ["derive", "env"] }
dialoguer = "0.12.0"
futures = "0.3.31"
http = "1.3.1"
hickory-proto = "0.25"
hickory-resolver = { version = "0.25", features = ["tokio"] }
hickory-server = "0.25"
http-body-util = "0.1.3"
hyper-util = { version = "0.1.16", features = ["tokio"] }
hyper = "1.7.0"
dirs = "6.0.0"
inquire = "0.9.1"
ipnet = { version = "2.10.1", features = ["serde"] }
itertools = "0.14.0"
libc = "0.2"
prost = "0.14.1"
rand = "0.9"
serde = { version = "1.0.221", features = ["derive"] }
serde_json = "1.0.144"
serde_with = { version = "3", features = ["base64"] }
sha2 = { version = "0.10.9", features = ["oid"] }
socket2 = { version = "0.5", features = ["all"] }
tokio = { version = "1.47.1", features = ["full", "test-util"] }
tokio-util = "0.7"
tokio-stream = { version = "0.1.17", features = ["net"] }
toml = "0.9.5"
tonic = { version = "0.14.2", features = ["server", "tls-ring", "codegen"] }
tonic-prost = "0.14.2"
tower = { version = "0.5.2", features = ["util", "timeout", "load-shed", "limit"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
yaml-rust2 = "0.10.3"
p256 = "0.13.2"
pest = "2.7"
pest_derive = "2.7"
pkcs8 = "0.10.2"
regex = "1.11.1"
ring = "0.17"
rustls = { version = "0.23.31", default-features = false }
thiserror = "2.0.16"
x509-cert = { version = "0.2.5", features = ["builder"] }
tokio-rustls = { version = "0.26.4", default-features = false }
rustls-webpki = { version = "0.103.7", features = ["ring"] }
tabled = { version = "0.20.0", features = ["ansi"] }
base32 = "0.5.1"
rustls-rustcrypto = "0.0.2-alpha"
tempfile = "3.23.0"
hostname = "0.4.1"
scopeguard = "1.2.0"
users = "0.11"
humantime = "2.4.0"
[build-dependencies]
protoc-bin-vendored = "3.2.0"
tonic-prost-build = "0.14.2"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[[test]]
name = "vm"
path = "tests/vm.rs"
[lints.rust]
warnings = "deny"
unreachable_pub = "deny"
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
uninlined_format_args = "deny"
too_many_lines = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[dev-dependencies]
rayon = "1.11.0"