[package]
edition = "2024"
name = "tools-rs"
version = "0.2.0"
authors = ["Tools-rs Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core functionality for the tools-rs tool collection system"
readme = "README.md"
license = "MIT"
resolver = "2"
[features]
default = []
[lib]
name = "tools_rs"
path = "src/lib.rs"
[[test]]
name = "metadata"
path = "tests/metadata.rs"
[[test]]
name = "no_features"
path = "tests/no_features.rs"
[[test]]
name = "schema_caching_performance"
path = "tests/schema_caching_performance.rs"
[dependencies.inventory]
version = "0.3.20"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
[dependencies.tokio]
version = "1.45.1"
features = [
"macros",
"rt-multi-thread",
"time",
"sync",
]
[dependencies.tools_core]
version = "0.2.0"
[dependencies.tools_macros]
version = "0.2.0"