[package]
edition = "2021"
rust-version = "1.75"
name = "specado-core-temp"
version = "0.2.2"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core engine for Specado, a provider-neutral AI orchestration SDK."
readme = "README.md"
keywords = [
"ai",
"llm",
"sdk",
]
categories = [
"api-bindings",
"network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/specado/specado"
[features]
audit-logging = [
"uuid",
"regex",
"time",
]
cli-resolver = []
default = []
hot-reload = []
[lib]
name = "specado_core"
path = "src/lib.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "provider_catalog"
path = "tests/provider_catalog.rs"
[[bench]]
name = "translation"
path = "benches/translation.rs"
harness = false
[dependencies.async-trait]
version = "0.1.83"
[dependencies.once_cell]
version = "1.19.0"
[dependencies.regex]
version = "1.11"
features = ["std"]
optional = true
default-features = false
[dependencies.reqwest]
version = "0.12.9"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0.214"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.132"
[dependencies.serde_json_path]
version = "0.7.2"
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.specado-schemas]
version = "=0.2.2"
package = "specado-schemas-temp"
[dependencies.thiserror]
version = "2.0.3"
[dependencies.time]
version = "0.3.36"
features = [
"formatting",
"macros",
]
optional = true
[dependencies.tokio]
version = "1.40"
features = [
"rt-multi-thread",
"macros",
"signal",
"io-std",
]
[dependencies.tracing]
version = "0.1.41"
[dependencies.uuid]
version = "1.10"
features = ["v4"]
optional = true
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.httpmock]
version = "0.7"
[dev-dependencies.tempfile]
version = "3.10"
[dev-dependencies.tokio]
version = "1.40"
features = [
"rt-multi-thread",
"macros",
"signal",
"io-std",
"test-util",
]