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>
18 lines
550 B
TOML
18 lines
550 B
TOML
[package]
|
|
name = "consciousness-channel-telegram"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
capnp = "0.20"
|
|
capnp-rpc = "0.20"
|
|
dirs = "6"
|
|
futures = "0.3"
|
|
poc-memory = { path = "../.." }
|
|
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-util = { version = "0.7", features = ["compat"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|