[package]
name = "sbi-rt"
version = "0.0.3"
description = "Runtime library for supervisors to call RISC-V Supervisor Binary Interface (RISC-V SBI)"
categories = ["os", "embedded", "hardware-support", "no-std"]
keywords = ["riscv", "sbi", "rustsbi"]
authors = [
"YdrMaster <ydrml@hotmail.com>",
"Luo Jia <me@luojia.cc>",
]
documentation = "https://docs.rs/sbi-rt"
edition.workspace = true
license.workspace = true
repository.workspace = true
readme = "README.md"
[package.metadata.docs.rs]
default-target = "riscv64imac-unknown-none-elf"
targets = [
"riscv32imac-unknown-none-elf", "riscv64imac-unknown-none-elf",
]
[dependencies]
sbi-spec = { version = "0.0.7", path = "../sbi-spec" }
[features]
default = []
integer-impls = []
legacy = ["sbi-spec/legacy"]