budgetkernel 0.1.2

A small, auditable, deterministic budget accounting kernel with zero heap allocation on the hot path.
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 = "2021"
rust-version = "1.75"
name = "budgetkernel"
version = "0.1.2"
build = false
exclude = [
    ".github/**",
    ".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small, auditable, deterministic budget accounting kernel with zero heap allocation on the hot path."
documentation = "https://docs.rs/budgetkernel"
readme = "README.md"
keywords = [
    "budget",
    "quota",
    "no-std",
    "deterministic",
    "kernel",
]
categories = [
    "no-std",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/Qarait/budgetkernel"

[features]
default = ["std"]
safe-map = []
std = []

[lib]
name = "budgetkernel"
path = "src/lib.rs"

[[example]]
name = "http_quota"
path = "examples/http_quota.rs"

[[example]]
name = "llm_pipeline"
path = "examples/llm_pipeline.rs"

[[example]]
name = "task_runner"
path = "examples/task_runner.rs"

[[test]]
name = "proptest"
path = "tests/proptest.rs"

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

[dependencies]

[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false

[dev-dependencies.proptest]
version = "1"

[profile.release]
lto = true
codegen-units = 1
panic = "abort"