[package]
edition = "2021"
name = "embacle"
version = "0.6.0"
build = false
exclude = [
".claude/",
".githooks/",
".github/",
"scripts/",
"AGENTS.md",
"crates/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LLM runner library — wraps AI CLI tools and SDKs as pluggable LLM providers"
homepage = "https://github.com/dravr-ai/dravr-embacle"
documentation = "https://docs.rs/embacle"
readme = "README.md"
keywords = [
"llm",
"cli",
"ai",
"claude",
"gemini",
]
categories = [
"command-line-utilities",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/dravr-ai/dravr-embacle"
[features]
copilot-headless = [
"dep:agent-client-protocol-schema",
"tokio/sync",
]
default = []
[lib]
name = "embacle"
path = "src/lib.rs"
[[example]]
name = "test_claude_e2e"
path = "examples/test_claude_e2e.rs"
[dependencies.agent-client-protocol-schema]
version = "0.11"
optional = true
[dependencies.async-trait]
version = "0.1"
[dependencies.bitflags]
version = "2"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3"
[dependencies.tokio]
version = "1.45"
features = [
"process",
"io-util",
"time",
"rt",
"rt-multi-thread",
"macros",
"fs",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["io-util"]
[dependencies.tracing]
version = "0.1"
[dependencies.which]
version = "7"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
version = "1.45"
features = [
"full",
"test-util",
]
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
redundant_pub_crate = "allow"
return_self_not_must_use = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"