deps: switch reqwest to rustls, drop aws-lc-sys

Use rustls instead of default native-tls (aws-lc-sys) for HTTPS.
Saves ~80 MB of build artifacts. Applied to both main crate and
telegram channel daemon.

Also: tracing default-features = false (Kent's edit).

Co-Authored-By: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
Kent Overstreet 2026-04-05 06:31:50 -04:00
parent 8d045a3e6b
commit c1a5638be5
3 changed files with 5 additions and 61 deletions

View file

@ -38,7 +38,7 @@ peg = "0.8"
paste = "1"
jobkit = { git = "https://evilpiepirate.org/git/jobkit.git", features = ["daemon", "console"] }
tokio = { version = "1", features = ["full", "tracing"] }
reqwest = { version = "0.13", features = ["json"] }
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] }
glob = "0.3"
anyhow = "1"
base64 = "0.22"
@ -56,7 +56,7 @@ skillratings = "0.28"
capnp-rpc = "0.20"
tokio-util = { version = "0.7", features = ["compat"] }
toml = "0.8"
tracing = "0.1"
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
tokio-scoped = "0.2.0"