From 5fade01d5ce22a506028abaa85fb1e3bd61e1585 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 19 Dec 2022 20:46:32 -0500 Subject: [PATCH] musl --- .vscode/tasks.json | 4 ++++ Cargo.toml | 7 +++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 8ba39ef..102ec2a 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 845a3ea..e9a7f58 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" \ No newline at end of file +regex = "^1.7.0"