[package]
edition = "2024"
rust-version = "1.85.0"
name = "adk-ui"
version = "0.3.2"
authors = ["James Karanja Maina <james.karanja@zavora.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dynamic UI generation for Rust Agent Development Kit (ADK-Rust) agents - render forms, cards, tables, charts and more"
documentation = "https://docs.rs/adk-ui"
readme = "README.md"
keywords = [
"ai",
"agent",
"ui",
"generative",
"adk",
]
categories = [
"api-bindings",
"gui",
]
license = "Apache-2.0"
repository = "https://github.com/zavora-ai/adk-rust"
resolver = "2"
[features]
remote-catalogs = ["reqwest"]
[lib]
name = "adk_ui"
path = "src/lib.rs"
[[test]]
name = "a2ui_compat_tests"
path = "tests/a2ui_compat_tests.rs"
[[test]]
name = "catalog_tests"
path = "tests/catalog_tests.rs"
[[test]]
name = "legacy_tool_protocol_tests"
path = "tests/legacy_tool_protocol_tests.rs"
[[test]]
name = "protocol_schema_tests"
path = "tests/protocol_schema_tests.rs"
[[test]]
name = "tool_protocol_matrix_tests"
path = "tests/tool_protocol_matrix_tests.rs"
[dependencies.adk-core]
version = "0.3.2"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.jsonschema]
version = "0.29"
[dependencies.reqwest]
version = "0.12"
optional = true
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.tokio]
version = "1.40"
features = [
"full",
"macros",
"rt-multi-thread",
]