[package]
edition = "2024"
name = "normcore"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation baseline for NormCore normative admissibility evaluator"
homepage = "https://github.com/olegische/normcore"
documentation = "https://github.com/olegische/normcore#readme"
readme = "README.md"
keywords = [
"llm",
"ai-agents",
"grounding",
"admissibility",
"deterministic",
]
categories = [
"development-tools",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/olegische/normcore"
[lib]
name = "normcore"
path = "src/lib.rs"
[[bin]]
name = "normcore"
path = "src/main.rs"
[[test]]
name = "boundary_contract"
path = "tests/boundary_contract.rs"
[[test]]
name = "evaluate_scenarios"
path = "tests/evaluate_scenarios.rs"
[[test]]
name = "golden_corpus"
path = "tests/golden_corpus.rs"
[[test]]
name = "property_invariants"
path = "tests/property_invariants.rs"
[[test]]
name = "trace_replay"
path = "tests/trace_replay.rs"
[dev-dependencies.proptest]
version = "1.6.0"
[lints.clippy]
collapsible_if = "deny"
redundant_closure_for_method_calls = "deny"
uninlined_format_args = "deny"
[profile.ci-test]
opt-level = 0
debug = 1
inherits = "test"
[profile.release]
lto = "fat"
codegen-units = 1
strip = "symbols"