normcore 0.1.1

Rust implementation baseline for NormCore normative admissibility evaluator
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "normcore"
version = "0.1.1"
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"