[package]
edition = "2024"
rust-version = "1.90"
name = "contextgraph-conformance"
version = "0.1.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Public Context Graph Protocol conformance suite (host- and provider-side) plus the contextgraph-inspect debugging binary, analogous to MCP's inspector."
homepage = "https://contextgraphprotocol.org"
documentation = "https://docs.rs/contextgraph-conformance"
readme = "README.md"
keywords = [
"contextgraph",
"context",
"protocol",
"conformance",
"testing",
]
categories = [
"development-tools::testing",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/macanderson/context-graph-protocol"
[package.metadata.dist]
dist = false
[lib]
name = "contextgraph_conformance"
path = "src/lib.rs"
[[bin]]
name = "contextgraph-example-docs"
path = "src/bin/contextgraph-example-docs.rs"
[[bin]]
name = "contextgraph-inspect"
path = "src/bin/contextgraph-inspect.rs"
[[test]]
name = "composition_conformance_suite"
path = "tests/composition_conformance_suite.rs"
[[test]]
name = "conformance_suite"
path = "tests/conformance_suite.rs"
[[test]]
name = "examples_roundtrip"
path = "tests/examples_roundtrip.rs"
[[test]]
name = "golden_fixtures"
path = "tests/golden_fixtures.rs"
[[test]]
name = "host_conformance_suite"
path = "tests/host_conformance_suite.rs"
[[test]]
name = "ingest_conformance"
path = "tests/ingest_conformance.rs"
[[test]]
name = "reference_vectors"
path = "tests/reference_vectors.rs"
[[test]]
name = "stdio_roundtrip"
path = "tests/stdio_roundtrip.rs"
[[test]]
name = "usage_report"
path = "tests/usage_report.rs"
[[test]]
name = "verify_wire"
path = "tests/verify_wire.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.colored]
version = "3"
[dependencies.contextgraph-host]
version = ">=0.1.0"
[dependencies.contextgraph-types]
version = ">=0.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"process",
"fs",
"io-util",
"sync",
]
[dev-dependencies.serde_json_canonicalizer]
version = "0.3.2"