[package]
edition = "2021"
name = "generative-artifact-protocol"
version = "0.15.3"
build = false
exclude = [
"apps/",
"assets/",
"spec/",
"scripts/",
".github/",
".githooks/",
"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/generative-artifact-protocol"
readme = "README.md"
keywords = [
"gap",
"llm",
"artifact",
"apply-engine",
"generative",
]
categories = ["text-processing"]
license = "Apache-2.0"
repository = "https://github.com/urmzd/generative-artifact-protocol"
[features]
default = []
[lib]
name = "gap"
crate-type = [
"lib",
"cdylib",
]
path = "src/lib.rs"
[[bench]]
name = "gap"
path = "benches/gap.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.opentelemetry]
version = "0.28"
[dependencies.opentelemetry_sdk]
version = "0.28"
[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"