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:
parent
8d045a3e6b
commit
c1a5638be5
3 changed files with 5 additions and 61 deletions
|
|
@ -9,7 +9,7 @@ capnp-rpc = "0.20"
|
|||
dirs = "6"
|
||||
futures = "0.3"
|
||||
poc-memory = { path = "../.." }
|
||||
reqwest = { version = "0.13", features = ["json"] }
|
||||
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue