first commit
This commit is contained in:
commit
47dbbb98f5
8 changed files with 2909 additions and 0 deletions
26
Cargo.toml
Normal file
26
Cargo.toml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
[package]
|
||||
name = "blitzortung"
|
||||
version = "0.1.0"
|
||||
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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue