aboutsummaryrefslogtreecommitdiff
path: root/examples/hifive1/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hifive1/Cargo.toml')
-rw-r--r--examples/hifive1/Cargo.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/hifive1/Cargo.toml b/examples/hifive1/Cargo.toml
new file mode 100644
index 0000000..42d60a7
--- /dev/null
+++ b/examples/hifive1/Cargo.toml
@@ -0,0 +1,22 @@
+[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 = []