ProxySaver/Cargo.toml

14 lines
391 B
TOML
Raw Permalink Normal View History

2025-02-25 08:38:38 +01:00
[package]
name = "proxy_saver"
version = "0.1.0"
edition = "2024"
[dependencies]
log = "0.4.26"
env_logger = "0.11.6"
clap = { version = "4.5.31", features = ["env", "derive"] }
2025-02-25 09:36:28 +01:00
tokio = { version = "1.43.0", features = ["full"] }
2025-02-25 16:32:24 +01:00
tokio-rustls = { version = "0.26.1", features = ["ring", "tls12"], default-features = false }
2025-02-25 09:36:28 +01:00
rustls-pki-types = "1.11.0"
webpki-roots = "0.26.8"
2025-02-25 10:00:13 +01:00
rand = "0.9.0"