[package]
edition = "2024"
rust-version = "1.85.0"
name = "adk-core"
version = "0.8.2"
authors = ["James Karanja Maina <james.karanja@zavora.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core traits and types for Rust Agent Development Kit (ADK-Rust) agents, tools, sessions, and events"
documentation = "https://docs.rs/adk-core"
readme = "README.md"
keywords = [
"ai",
"agent",
"adk",
"llm",
"gemini",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/zavora-ai/adk-rust"
resolver = "2"
[features]
default = []
rustls = ["dep:rustls"]
[lib]
name = "adk_core"
path = "src/lib.rs"
[[test]]
name = "error_envelope_property_tests"
path = "tests/error_envelope_property_tests.rs"
[[test]]
name = "function_response_property_tests"
path = "tests/function_response_property_tests.rs"
[[test]]
name = "identity_property_tests"
path = "tests/identity_property_tests.rs"
[[test]]
name = "instruction_template_tests"
path = "tests/instruction_template_tests.rs"
[[test]]
name = "schema_edge_case_tests"
path = "tests/schema_edge_case_tests.rs"
[[test]]
name = "schema_property_tests"
path = "tests/schema_property_tests.rs"
[[test]]
name = "schema_valid_json_property_tests"
path = "tests/schema_valid_json_property_tests.rs"
[[test]]
name = "shared_state_tests"
path = "tests/shared_state_tests.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.futures]
version = "0.3"
[dependencies.rustls]
version = "0.23"
features = ["aws-lc-rs"]
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.40"
features = [
"sync",
"time",
]
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.23"
features = [
"v4",
"serde",
]
[dev-dependencies.async-stream]
version = "0.3"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
version = "1.40"
features = [
"rt",
"macros",
"test-util",
]
default-features = false