peazyrsa/Cargo.toml

25 lines
508 B
TOML
Raw Normal View History

2024-10-19 13:21:11 +00:00
[package]
name = "peazyrsa"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-10-19 17:59:43 +00:00
anyhow = "1.0.90"
2024-10-19 20:15:56 +00:00
async-stream = "0.3.6"
2024-10-21 21:41:06 +00:00
chrono = "0.4.38"
2024-10-19 17:59:43 +00:00
clap = { version = "4.5.20", features = ["derive"] }
encoding = "0.2.33"
futures = "0.3.31"
2024-10-19 20:15:56 +00:00
futures-core = "0.3.31"
futures-util = "0.3.31"
2024-10-21 21:41:06 +00:00
lazy_static = "1.5.0"
openssl = { version="0.10.68" }
2024-10-19 17:59:43 +00:00
regex = "1.11.0"
2024-10-19 20:15:56 +00:00
tokio = { version = "1.40.0", features = ["fs", "rt", "process", "macros", "io-util"] }
2024-10-19 21:31:26 +00:00
[profile.release]
opt-level = 3
debug = false
lto = true
strip = true