[package]
edition = "2024"
name = "agentic-tools-core"
version = "0.1.0"
authors = ["Allison Durham"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core traits and types for agentic-tools library family"
readme = false
license = "MIT"
repository = "https://github.com/allisoneer/agentic_auxilary"
resolver = "2"
[package.metadata.repo]
role = "lib"
family = "agentic-tools"
[package.metadata.repo.integrations]
mcp = false
logging = false
napi = false
[features]
default = []
inventory = ["dep:inventory"]
[lib]
name = "agentic_tools_core"
path = "src/lib.rs"
[[test]]
name = "golden_schemas"
path = "tests/golden_schemas.rs"
[[test]]
name = "native_calls"
path = "tests/native_calls.rs"
[dependencies.futures]
version = "0.3"
[dependencies.inventory]
version = "0.3"
optional = true
[dependencies.json-patch]
version = "4"
[dependencies.rmcp]
version = "0.12.0"
features = [
"server",
"transport-io",
]
[dependencies.schemars]
version = "1"
features = ["derive"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]