[package]
edition = "2024"
rust-version = "1.85"
name = "shakrs-json-parser"
version = "0.1.0"
build = false
include = [
"src/**",
"tests/**",
"Cargo.toml",
"README.md",
"LICENSE",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser, validator, scaffolder, and canonical formatter for the shakrs.json workspace config. Zero I/O; no policy-registry knowledge."
readme = "README.md"
keywords = [
"shackles",
"shakrs",
"json",
"config",
]
categories = [
"development-tools",
"config",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/agent-quality-controls/shackles"
[package.metadata.docs.rs]
all-features = true
[features]
all = ["api"]
api = []
default = ["all"]
[lib]
name = "shakrs_json_parser"
path = "src/lib.rs"
[[test]]
name = "parse"
path = "tests/parse.rs"
[dependencies.garde]
version = "0.22"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"