This commit is contained in:
Evan Pratten 2022-12-19 20:46:32 -05:00
parent 5763f5f705
commit 5fade01d5c
2 changed files with 9 additions and 2 deletions

4
.vscode/tasks.json vendored
View File

@ -18,6 +18,8 @@
], ],
"label": "rust: cargo run", "label": "rust: cargo run",
"args": [ "args": [
"--target",
"x86_64-unknown-linux-musl",
"--", "--",
"-c", "-c",
"TRAINS", "TRAINS",
@ -33,6 +35,8 @@
], ],
"label": "rust: cargo run (dry run)", "label": "rust: cargo run (dry run)",
"args": [ "args": [
"--target",
"x86_64-unknown-linux-musl",
"--", "--",
"-c", "-c",
"N0CALL", "N0CALL",

View File

@ -13,11 +13,14 @@ categories = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
reqwest = { version = "^0.11.13", features = ["json"] } reqwest = { version = "^0.11.13", default-features = false, features = [
"json",
"rustls-tls"
] }
serde = { version = "^1.0.126", features = ["derive"] } serde = { version = "^1.0.126", features = ["derive"] }
tokio = { version = "^1.23.0", features = ["macros", "rt-multi-thread"] } tokio = { version = "^1.23.0", features = ["macros", "rt-multi-thread"] }
clap = { version = "^4.0.29", features = ["derive"] } clap = { version = "^4.0.29", features = ["derive"] }
aprs-encode = "^0.1.2" aprs-encode = "^0.1.2"
arrayvec = "^0.7" arrayvec = "^0.7"
serde-xml-rs = "^0.6.0" serde-xml-rs = "^0.6.0"
regex = "^1.7.0" regex = "^1.7.0"