[package]
edition = "2021"
rust-version = "1.80"
name = "vigil-types"
version = "0.1.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core typed data structures for Vigil local AI safety runtime — DecisionRecord, AuditEvent, EffectVector, ApprovalRequest, ToolInvocation"
homepage = "https://vigils.ai"
readme = false
keywords = [
"vigil",
"ai-safety",
"audit",
"control-plane",
]
categories = [
"data-structures",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/duncatzat/vigils"
[lib]
name = "vigil_types"
path = "src/lib.rs"
[[test]]
name = "invariants"
path = "tests/invariants.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[lints.clippy]
dbg_macro = "warn"
expect_used = "warn"
panic = "warn"
todo = "warn"
unwrap_used = "warn"
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"