[package]
name = "supercode-harness"
description = "The optional native Supercode agent and tool harness"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true
readme = "../../README.md"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "supercode_harness"
path = "src/lib.rs"
[features]
default = ["adapter-api", "adapter-mcp", "adapter-acp"]
adapter-api = ["dep:tokio-tungstenite"]
adapter-mcp = []
adapter-acp = []
[dependencies]
supercode-interchange = { path = "../interchange", version = "=0.4.6" }
supercode-reduce = { path = "../reduce", version = "=0.4.6" }
supercode-runtime = { path = "../runtime", version = "=0.4.6", features = ["reduction"] }
tokio = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
async-trait = { workspace = true }
futures = { workspace = true }
tokio-tungstenite = { workspace = true, optional = true }
thiserror = { workspace = true }
regex = { workspace = true }
ignore = { workspace = true }
glob = { workspace = true }
notify = { workspace = true }
bytes = { workspace = true }
tracing = { workspace = true }
libc = { workspace = true }
blake3 = { workspace = true }
diffy = { workspace = true }
rusqlite = { workspace = true }
toml = "0.8"
tree-sitter = "0.25"
tree-sitter-bash = "0.25"
getrandom = { workspace = true }
[target.'cfg(target_os = "linux")'.dependencies]
landlock = "0.4.5"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_JobObjects",
"Win32_System_Threading",
] }
[dev-dependencies]
tokio = { workspace = true }
async-trait = { workspace = true }