rtic/examples/hifive1/Cargo.toml

23 lines
682 B
TOML
Raw Normal View History

[package]
name = "rtic_hifive1"
categories = ["embedded", "no-std"]
description = "Examples of RTIC apps for the HiFive1 board"
license = "MIT OR Apache-2.0"
version = "0.1.0"
edition = "2021"
[workspace]
[dependencies]
rtic = { path = "../../rtic" }
heapless = "0.8.0"
hifive1 = { git = "https://github.com/romancardenas/hifive1.git", features = ["board-redv"] }
e310x = { git = "https://github.com/greenlsi/e310x.git", features = ["rt"]}
riscv-rt = {version = "0.12.1", features = ["single-hart"]}
riscv = "0.11.0"
semihosting = { version = "0.1", features = ["stdio", "panic-handler"] }
[features]
riscv-clint-backend = ["rtic/riscv-clint-backend"]
test-critical-section = []