[package]
edition = "2021"
name = "generative-artifact-protocol"
version = "0.12.0"
build = false
exclude = [
"apps/",
"libs/",
"spec/",
"scripts/",
".github/",
".githooks/",
"pyproject.toml",
"uv.lock",
".python-version",
"justfile",
"sr.yaml",
"target/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generative Artifact Protocol (GAP) — token-efficient artifact generation and updates for LLMs"
homepage = "https://github.com/urmzd/agent-artifact-protocol"
readme = "README.md"
keywords = [
"gap",
"aap",
"llm",
"artifact",
"apply-engine",
]
categories = ["text-processing"]
license = "Apache-2.0"
repository = "https://github.com/urmzd/agent-artifact-protocol"
[features]
default = []
python = ["pyo3"]
[lib]
name = "gap"
crate-type = [
"lib",
"cdylib",
]
path = "src/lib.rs"
[[bench]]
name = "aap"
path = "benches/aap.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.opentelemetry]
version = "0.28"
[dependencies.opentelemetry_sdk]
version = "0.28"
[dependencies.pyo3]
version = "0.24"
features = ["extension-module"]
optional = true
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-opentelemetry]
version = "0.29"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.tempfile]
version = "3"