-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (41 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
45 lines (41 loc) · 1.39 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
[package]
authors = ["Artavazd Balaian <reasyu@gmail.com>"]
edition = "2024"
license = "MIT"
name = "polytls"
readme = "README.md"
rust-version = "1.92.0"
version = "0.1.0"
[dependencies]
boring = { git="https://github.com/cloudflare/boring.git", rev = "8dfa471c864e40b11e1ff29b1d95858987fc6a78" }
boring-sys = { git = "https://github.com/cloudflare/boring.git", rev = "8dfa471c864e40b11e1ff29b1d95858987fc6a78"}
brotli = "8"
clap = { version = "4", features = ["derive"] }
flate2 = "1"
foreign-types = "0.5"
gethostname = "1.1.0"
httparse = "1"
local-ip-address = "0.6.6"
memchr = "2"
opentelemetry = "0.31.0"
opentelemetry-appender-tracing = "0.31.1"
opentelemetry-otlp = "0.31.0"
opentelemetry-resource-detectors = "0.10.0"
opentelemetry-semantic-conventions = "0.31.0"
opentelemetry_sdk = { version = "0.31.0", features = ["default", "spec_unstable_metrics_views"] }
serde = { version = "1", features = ["derive"] }
thiserror = "2"
tokio = { version = "1", features = ["full"] }
tokio-boring = { git = "https://github.com/cloudflare/boring.git", rev = "8dfa471c864e40b11e1ff29b1d95858987fc6a78" }
tokio-util = { version = "0.7", features = ["codec"] }
toml = "0.9.10"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
zstd = "0.13"
[dev-dependencies]
rand = "0.9.2"
tempfile = "3"
[target.'cfg(target_os = "linux")'.dev-dependencies]
scudo = "0.1"
[profile.release]
debug = true