agent-code-lib 0.16.1

Agent engine library: LLM providers, tools, query loop, memory
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "agent-code-lib"
version = "0.16.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent engine library: LLM providers, tools, query loop, memory"
readme = "README.md"
license = "MIT"

[lib]
name = "agent_code_lib"
path = "src/lib.rs"

[[test]]
name = "config_integration"
path = "tests/config_integration.rs"

[[test]]
name = "message_integration"
path = "tests/message_integration.rs"

[[test]]
name = "permissions_integration"
path = "tests/permissions_integration.rs"

[[test]]
name = "provider_integration"
path = "tests/provider_integration.rs"

[[test]]
name = "sandbox_integration"
path = "tests/sandbox_integration.rs"

[[test]]
name = "shell_passthrough_integration"
path = "tests/shell_passthrough_integration.rs"

[[test]]
name = "skills_integration"
path = "tests/skills_integration.rs"

[[bench]]
name = "compaction"
path = "benches/compaction.rs"
harness = false

[[bench]]
name = "startup"
path = "benches/startup.rs"
harness = false

[[bench]]
name = "token_estimation"
path = "benches/token_estimation.rs"
harness = false

[dependencies.anyhow]
version = "1"

[dependencies.async-trait]
version = "0.1"

[dependencies.bytes]
version = "1"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.crossterm]
version = "0.29"

[dependencies.dirs]
version = "6"

[dependencies.eventsource-stream]
version = "0.2"

[dependencies.futures]
version = "0.3"

[dependencies.glob]
version = "0.3"

[dependencies.ignore]
version = "0.4"

[dependencies.libc]
version = "0.2"

[dependencies.pin-project-lite]
version = "0.2"

[dependencies.pulldown-cmark]
version = "0.13"

[dependencies.regex]
version = "1"

[dependencies.reqwest]
version = "0.12"
features = [
    "stream",
    "json",
    "rustls-tls",
]
default-features = false

[dependencies.reqwest-eventsource]
version = "0.6"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.similar]
version = "3"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt",
    "rt-multi-thread",
    "io-util",
    "net",
    "time",
    "sync",
    "signal",
    "macros",
    "fs",
    "process",
]

[dependencies.tokio-util]
version = "0.7"

[dependencies.toml]
version = "1.1"

[dependencies.tracing]
version = "0.1"

[dependencies.tree-sitter]
version = "0.26"

[dependencies.tree-sitter-bash]
version = "0.25"

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "serde",
]

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio-test]
version = "0.4"