[package]
edition = "2024"
name = "agent-first-data"
version = "0.16.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A naming convention that lets AI agents understand your data without being told what it means."
readme = "README.md"
license = "MIT"
repository = "https://github.com/agentfirstkit/agent-first-data"
[features]
cli = ["dep:clap"]
cli-help = ["dep:clap"]
cli-help-markdown = [
"cli-help",
"dep:clap-markdown",
]
default = ["cli"]
skill-admin = []
stream-redirect = ["dep:libc"]
tracing = [
"dep:tracing",
"dep:tracing-subscriber",
]
[lib]
name = "agent_first_data"
path = "rust/src/lib.rs"
[[bin]]
name = "afdata"
path = "cli/src/main.rs"
required-features = ["cli"]
[[example]]
name = "afdata_bench"
path = "rust/examples/afdata_bench.rs"
[[example]]
name = "agent_cli"
path = "rust/examples/agent_cli.rs"
required-features = [
"cli-help",
"cli-help-markdown",
]
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = ["derive"]
optional = true
[dependencies.clap-markdown]
version = "0.1.5"
optional = true
[dependencies.libc]
version = "0.2"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tracing]
version = "0.1"
optional = true
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"registry",
]
optional = true
[dependencies.url]
version = "2"
[dev-dependencies.clap]
version = "4"
features = ["derive"]
[dev-dependencies.clap-markdown]
version = "0.1.5"
[lints.clippy]
expect_used = "deny"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
unwrap_used = "deny"