Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = ["core", "pattern", "swang", "ui-core", "cockpit", "cli", "plugin", "
# the hard-constraint-contract proposal); excluded for the same reason —
# production builds, clippy, and CI never touch it, and its solver
# dependencies never enter the workspace tree.
exclude = ["fuzz", "lab"]
exclude = ["fuzz", "lab", "census"]
resolver = "2"

[workspace.package]
Expand Down
2 changes: 2 additions & 0 deletions census/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
Cargo.lock
29 changes: 29 additions & 0 deletions census/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Isolated read-only corpus census (real-corpus grounding, ADR-0010 isolation
# precedent like `lab/` and `fuzz/`). Deliberately NOT a workspace member: it is
# ops/analysis tooling that reads a corpus + its source tabs and emits a health
# report. Production builds, clippy, and CI never touch it; its only path
# dependency is `griff-core`, read-only. It changes no corpus data.

[package]
name = "griff-corpus-census"
version = "0.0.0"
publish = false
edition = "2021"
rust-version = "1.92"

[[bin]]
name = "census"
path = "src/main.rs"

[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"

[dependencies.griff-core]
path = "../core"

[lints.rust]
unsafe_code = "forbid"

[lints.clippy]
all = { level = "deny", priority = -1 }
Loading
Loading