musl
This commit is contained in:
parent
5763f5f705
commit
5fade01d5c
4
.vscode/tasks.json
vendored
4
.vscode/tasks.json
vendored
@ -18,6 +18,8 @@
|
||||
],
|
||||
"label": "rust: cargo run",
|
||||
"args": [
|
||||
"--target",
|
||||
"x86_64-unknown-linux-musl",
|
||||
"--",
|
||||
"-c",
|
||||
"TRAINS",
|
||||
@ -33,6 +35,8 @@
|
||||
],
|
||||
"label": "rust: cargo run (dry run)",
|
||||
"args": [
|
||||
"--target",
|
||||
"x86_64-unknown-linux-musl",
|
||||
"--",
|
||||
"-c",
|
||||
"N0CALL",
|
||||
|
@ -13,11 +13,14 @@ categories = []
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
[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"] }
|
||||
tokio = { version = "^1.23.0", features = ["macros", "rt-multi-thread"] }
|
||||
clap = { version = "^4.0.29", features = ["derive"] }
|
||||
aprs-encode = "^0.1.2"
|
||||
arrayvec = "^0.7"
|
||||
serde-xml-rs = "^0.6.0"
|
||||
regex = "^1.7.0"
|
||||
regex = "^1.7.0"
|
||||
|
Reference in New Issue
Block a user