forked from rustsbi/prototyper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (34 loc) · 1009 Bytes
/
Cargo.toml
File metadata and controls
41 lines (34 loc) · 1009 Bytes
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
cargo-features = ["per-package-target"]
[package]
name = "rustsbi-prototyper"
version = "0.0.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
forced-target = "riscv64imac-unknown-none-elf"
[dependencies]
aclint = "0.0.0"
log = "0.4.21"
panic-halt = "0.2.0"
riscv = "0.11.1"
rustsbi = { version = "0.4.0-alpha.3", features = ["machine"] }
sbi-spec = { version = "0.0.7", features = ["legacy"] }
serde = { version = "1.0.202", default-features = false, features = ["derive"]}
serde-device-tree = { git = "https://github.com/rustsbi/serde-device-tree", default-features = false }
sifive-test-device = "0.0.0"
spin = "0.9.8"
uart16550 = "0.0.1"
riscv-decode = "0.2.1"
fast-trap = { version = "0.0.1", features = ["riscv-m"] }
[[bin]]
name = "rustsbi-prototyper"
test = false
bench = false
[workspace]
members = ["xtask"]
[workspace.package]
edition = "2021"
license = "MulanPSL-2.0 OR MIT"
repository = "https://github.com/rustsbi/prototyper"
[profile.release]
debug = true