1234567891011121314151617181920 |
- [package]
- name = "rustsbi"
- description = "Minimal RISC-V's SBI implementation library in Rust"
- version = "0.0.1"
- authors = ["luojia65 <[email protected]>"]
- repository = "https://github.com/luojia65/rustsbi"
- license = "MIT" # OR MulanPSL-2.0; cargo does not support by now
- license-file = "../LICENSE-MULAN"
- keywords = ["riscv", "sbi", "rustsbi"]
- categories = ["os", "embedded", "hardware-support", "no-std"]
- edition = "2018"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- embedded-hal = "1.0.0-alpha.1"
- nb = "1.0"
- riscv = "0.6"
- spin = "0.6"
- lazy_static = { version = "1", features = ["spin_no_std"] }
|