-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
53 lines (43 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "sbi"
version = "0.3.0"
authors = ["Wesley Norris <repnop@repnop.dev>"]
edition = "2021"
repository = "https://github.com/repnop/sbi"
license = "MPL-2.0"
description = "A pure-Rust library to interact with the RISC-V Supervisor Binary Interface"
keywords = ["sbi", "riscv", "osdev"]
categories = ["embedded", "os"]
readme = "README.md"
exclude = [
"tests/",
".vscode/",
".cargo/",
"fw_jump32.elf",
"fw_jump64.elf",
"rust-toolchain.toml",
]
[package.metadata.docs.rs]
default-target = "riscv64imac-unknown-none-elf"
targets = ["riscv64imac-unknown-none-elf", "riscv32imac-unknown-none-elf"]
[dependencies]
[[test]]
name = "hart_state_management"
path = "tests/hsm.rs"
harness = false
[[test]]
name = "interprocessor_interrupt"
path = "tests/ipi.rs"
harness = false
[[test]]
name = "timer_interrupt"
path = "tests/timer.rs"
harness = false
[[test]]
name = "base"
path = "tests/base.rs"
harness = false
[[test]]
name = "debug_console"
path = "tests/debug_console.rs"
harness = false