[package]
edition = "2021"
rust-version = "1.75"
name = "ruvix-types"
version = "0.1.0"
authors = ["RuVector Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "No-std kernel interface types for the RuVix Cognition Kernel (ADR-087)"
readme = "README.md"
keywords = [
"kernel",
"cognition",
"no_std",
"capability",
"proof-gated",
]
categories = [
"no-std",
"embedded",
"os",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ruvnet/ruvector"
[features]
alloc = []
default = []
std = []
[lib]
name = "ruvix_types"
crate-type = ["rlib"]
path = "src/lib.rs"
[[test]]
name = "proof_cache_test"
path = "tests/proof_cache_test.rs"
[[test]]
name = "types_test"
path = "tests/types_test.rs"
[[bench]]
name = "serialization"
path = "benches/serialization.rs"
harness = false
[[bench]]
name = "type_construction"
path = "benches/type_construction.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.5"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true