New src/agent/api/http.rs: ~240 lines, supports GET/POST, JSON/form bodies, SSE streaming via chunk(), TLS via rustls. No tracing dep. Removes reqwest from the main crate and telegram channel crate. Cargo.lock drops ~900 lines of transitive dependencies. tracing now only pulled in by tui-markdown. Co-Authored-By: Proof of Concept <poc@bcachefs.org>
17 lines
410 B
TOML
17 lines
410 B
TOML
[package]
|
|
name = "consciousness-channel-telegram"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
capnp = "0.25"
|
|
capnp-rpc = "0.25"
|
|
dirs = "6"
|
|
futures = "0.3"
|
|
poc-memory = { path = "../.." }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-util = { version = "0.7", features = ["compat"] }
|
|
log = "0.4"
|
|
env_logger = "0.11"
|