-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 889 Bytes
/
Cargo.toml
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
[workspace]
members = [
"qs-core",
"qs-cli",
"qs-roundezvous",
"qs-gui/src-tauri"
]
resolver = "2"
[workspace.dependencies]
# Its not possible to use a path here if the qs-cli package needs to be published to crates.io
qs-core = { git = "https://github.com/maxomatic458/quic-send", version = "0.3.0" }
quinn = { version = "0.11.4", features = ["runtime-tokio"] }
rustls = { version = "0.23.12", default-features = false, features = ["ring"] }
rcgen = "0.13.1"
bincode = "=2.0.0-rc.3"
tokio = { version = "1.40.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
thiserror = "1.0.63"
pretty_assertions = "1.4.0"
rand = "0.8.5"
clap = { version = "4.5.16", features = ["derive"] }
semver = "1.0.23"
serde = { version = "1.0.215", features = ["derive"] }
local-ip-address = "0.6.3"
[profile.release]
lto = true
codegen-units = 1
strip = "debuginfo"