2021-07-22 00:15:17 +00:00
|
|
|
[package]
|
|
|
|
name = "ptth_quic_client_gui"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Trish"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "AGPL-3.0"
|
|
|
|
|
2023-01-07 00:10:11 +00:00
|
|
|
repository = "https://six-five-six-four.com/git/reactor/ptth"
|
|
|
|
|
2021-07-22 00:15:17 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.38"
|
2021-10-10 21:20:35 +00:00
|
|
|
blake3 = "1.0.0"
|
2023-09-01 00:46:56 +00:00
|
|
|
crossbeam-channel = "0.5.8"
|
|
|
|
fltk = "1.4.10"
|
2022-10-09 14:19:01 +00:00
|
|
|
ptth_quic = { path = "../ptth_quic" }
|
2023-09-01 00:46:56 +00:00
|
|
|
quinn = "0.10.2"
|
2021-10-10 21:20:35 +00:00
|
|
|
rand = "0.8.4"
|
|
|
|
rand_chacha = "0.3.1"
|
2023-09-01 00:46:56 +00:00
|
|
|
rmp-serde = "1.1.2"
|
2021-10-10 21:20:35 +00:00
|
|
|
serde = "1.0.130"
|
2021-07-22 00:15:17 +00:00
|
|
|
structopt = "0.3.20"
|
2023-09-01 00:46:56 +00:00
|
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
2023-09-01 01:02:36 +00:00
|
|
|
tracing-subscriber = "0.3.17"
|
2021-07-22 00:15:17 +00:00
|
|
|
tracing = "0.1.25"
|
2023-08-31 23:47:41 +00:00
|
|
|
|
|
|
|
[dependencies.reqwest]
|
2023-09-01 00:46:56 +00:00
|
|
|
version = "0.11.20"
|
2023-08-31 23:47:41 +00:00
|
|
|
default-features = false
|
|
|
|
features = ["stream", "rustls-tls", "hyper-rustls"]
|