vexriscv-rust/Cargo.toml

17 lines
433 B
TOML
Raw Normal View History

2017-09-19 22:04:12 +08:00
[package]
name = "riscv"
2018-08-12 13:50:11 +08:00
version = "0.3.0"
repository = "https://github.com/rust-embedded/riscv"
2017-09-19 22:04:12 +08:00
authors = ["David Craven <david@craven.ch>"]
categories = ["embedded", "hardware-support", "no-std"]
description = "Low level access to RISCV processors"
keywords = ["riscv", "register", "peripheral"]
license = "ISC"
[dependencies]
2018-08-12 13:57:55 +08:00
bare-metal = "0.2.0"
bit_field = "0.9.0"
2018-08-12 13:56:17 +08:00
[features]
const-fn = ["bare-metal/const-fn"]
2018-08-12 13:56:17 +08:00
inline-asm = []