[package]
edition = "2021"
name = "gcf"
version = "2.5.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The AI-native wire format for structured data. 50-92% fewer tokens than JSON, with multi-turn delta encoding for agent loops. 100% comprehension on every frontier model. Zero dependencies (except serde)."
homepage = "https://gcformat.com/"
readme = "README.md"
keywords = [
"gcf",
"llm",
"mcp",
"tokens",
"wire-format",
]
categories = [
"encoding",
"data-structures",
]
license = "MIT"
repository = "https://github.com/blackwell-systems/gcf-rust"
[lib]
name = "gcf"
path = "src/lib.rs"
[[bin]]
name = "gcf"
path = "src/main.rs"
[[test]]
name = "conformance_v2"
path = "tests/conformance_v2.rs"
[[test]]
name = "fuzz_parallel"
path = "tests/fuzz_parallel.rs"
[[test]]
name = "generic_delta_fuzz"
path = "tests/generic_delta_fuzz.rs"
[[test]]
name = "keyed_map_fuzz"
path = "tests/keyed_map_fuzz.rs"
[[test]]
name = "multibyte_field"
path = "tests/multibyte_field.rs"
[[test]]
name = "multiformat_fuzz"
path = "tests/multiformat_fuzz.rs"
[[test]]
name = "rerun_csv"
path = "tests/rerun_csv.rs"
[[test]]
name = "rerun_json_1b"
path = "tests/rerun_json_1b.rs"
[[test]]
name = "rerun_missing"
path = "tests/rerun_missing.rs"
[[test]]
name = "roundtrip_v2"
path = "tests/roundtrip_v2.rs"
[[test]]
name = "stream_fielddecl"
path = "tests/stream_fielddecl.rs"
[[test]]
name = "stream_value_quote"
path = "tests/stream_value_quote.rs"
[[test]]
name = "toml_fuzz"
path = "tests/toml_fuzz.rs"
[[test]]
name = "yaml_1b"
path = "tests/yaml_1b.rs"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dev-dependencies.csv]
version = "1"
[dev-dependencies.rayon]
version = "1"
[dev-dependencies.rmp-serde]
version = "1"
[dev-dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dev-dependencies.serde_yaml]
version = "0.9"
[dev-dependencies.toml]
version = "0.8"