Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Compile

[package]
name = "kyaaa"
version = "0.2.0"
edition = "2024"
description="Zero heap. Zero vtables. A static no_std heterogeneous list (HList) that murders dynamic dispatch and melts straight into raw ASM... kyaaa!"
keywords = ["hlist", "no_std", "zero-cost", "macro", "data-structures"]
categories = ["data-structures", "no-std", "embedded", "memory-management"]
license = "AGPL-3.0-only"
repository = "https://github.com/SAP2B/kyaaa"
readme = "README.md"

[dependencies]

[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
colorful = "0.3.2"

[profile.dev]
panic = "abort"

[profile.release]
opt-level = 3
panic = "abort"
lto = true
codegen-units = 1
strip = true


[[bench]]
name = "webserver"
path = "benches/webserver.rs"
harness = false