blitzortung/Cargo.toml

26 lines
711 B
TOML

[package]
name = "blitzortung"
version = "0.1.2"
edition = "2024"
[dependencies]
clap = { version = "4.5.45", features = ["derive"] }
futures-util = "0.3.31"
http = "1.3.1"
rand = "0.9.2"
reqwest = { version = "0.12.23", default-features = false, features = [
"rustls-tls-webpki-roots-no-provider",
"http2",
"charset",
"blocking",
] }
rustls = { version = "0.23.31", default-features = false, features = [
"logging",
"tls12",
] }
rustls-rustcrypto = "0.0.2-alpha"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.143"
tokio = { version = "1.47.1", features = ["full"] }
tokio-tungstenite = { version = "*", features = ["rustls-tls-webpki-roots"] }
url = "2.5.4"