-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 877 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (29 loc) · 877 Bytes
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
[package]
name = "triangle-proxy"
version = "0.1.7"
edition = "2024"
license-file = "LICENSE"
description = "Simple TLS-with-SNI proxy"
repository = "https://github.com/kotx/triangle.git"
homepage = "https://github.com/kotx/triangle"
[lints.clippy]
all = "deny"
pedantic = "warn"
[dependencies]
color-eyre = "0.6.5"
figment = { version = "0.10.19", features = ["json", "env"] }
rustls = "0.23.31"
serde = { version = "1.0.219", features = ["derive"] }
thiserror = "2.0.12"
tokio = { version = "1.47.1", features = ["full"] }
tokio-rustls = "0.26.2"
tokio-socks = "0.5.2"
tokio-util = { version = "0.7.16", features = ["full"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
url = { version = "2.5.4", features = ["serde"] }
wildmatch = { version = "2.4.0", features = ["serde"] }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"