[package]
edition = "2024"
rust-version = "1.85"
name = "bootroom-core"
version = "0.1.0"
authors = ["sandwich <sandwich.farm@protonmail.com>"]
build = false
include = [
"src/**/*.rs",
"/LICENSE-MIT",
"/LICENSE-APACHE",
"/README.md",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure types and protocol definitions for bootroom (no I/O)."
homepage = "https://github.com/sandwich-farm/bootroom"
documentation = "https://docs.rs/bootroom-core"
readme = "README.md"
keywords = [
"bootroom",
"qemu",
"wasm",
"riscv",
"protocol",
]
categories = [
"development-tools::testing",
"wasm",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sandwich-farm/bootroom"
[lib]
name = "bootroom_core"
path = "src/lib.rs"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "1.1"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"