-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 829 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "decaf-mod"
version = "1.0.0-alpha.1"
edition = "2024"
rust-version = "1.85"
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
description = "Debouncing proxy for ACP - coalesces agent message chunks"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/symposium-dev/decaf"
keywords = ["acp", "agent", "proxy", "debounce"]
categories = ["development-tools"]
[dependencies]
sacp = "11.0.0-alpha.1"
tokio = { version = "1.48", features = ["time", "sync", "io-util", "io-std", "macros", "rt-multi-thread"] }
tokio-util = { version = "0.7", features = ["compat"] }
tracing = "0.1"
[dev-dependencies]
futures = "0.3"
sacp-conductor = "11.0.0-alpha.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[package.metadata.symposium]
binary = "decaf-mod"
args = ["100"]