-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (30 loc) · 789 Bytes
/
Cargo.toml
File metadata and controls
39 lines (30 loc) · 789 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
[package]
name = "xv6"
version = "0.1.0"
edition = "2021"
# the profile used for `cargo build`
[profile.dev]
# Comment it to avoid cargo test error
# panic = "abort" # disable stack unwinding on panic
# the profile used for `cargo build --release`
[profile.release]
panic = "abort" # disable stack unwinding on panic
[workspace]
members = ["crates/rv64", "crates/riscv-rt"]
default-members = ["."]
resolver = "2"
[workspace.dependencies]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# [[test]]
# name = "should_panic"
# harness = false
# [[test]]
# name = "stack_overflow"
# harness = false
[[bin]]
name = "xv6"
# test = false
bench = false
[dependencies]
riscv-rt = { path = "crates/riscv-rt" }
rv64 = { path = "crates/rv64" }