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",
"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",

View File

@ -13,7 +13,10 @@ 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"] }