-
-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 775 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 775 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
[workspace]
members = [
"crates/slipstream-core",
"crates/slipstream-dns",
"crates/slipstream-ffi",
"crates/slipstream-client",
"crates/slipstream-server",
]
resolver = "2"
[workspace.package]
edition = "2021"
description = "High-performance DNS tunnel carrying QUIC packets over DNS"
license = "Apache-2.0"
repository = "https://github.com/Mygod/slipstream-rust"
readme = "README.md"
[workspace.dependencies]
clap = { version = "4.5.4", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
time = { version = "0.3", features = ["formatting", "macros"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"