[package]
edition = "2021"
rust-version = "1.75"
name = "ruvix-shell"
version = "0.1.0"
authors = ["RuVector Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "In-kernel debug shell for the RuVix Cognition Kernel (ADR-087)"
readme = "README.md"
keywords = [
"kernel",
"debug",
"shell",
"no_std",
"embedded",
]
categories = [
"no-std",
"embedded",
"os",
"command-line-interface",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ruvnet/ruvector"
[features]
alloc = ["ruvix-types/alloc"]
default = ["alloc"]
std = ["ruvix-types/std"]
[lib]
name = "ruvix_shell"
crate-type = ["rlib"]
path = "src/lib.rs"
[dependencies.ruvix-types]
version = "0.1.0"
features = ["alloc"]
default-features = false
[dev-dependencies]
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true