Skip to content

Commit

Permalink
Ensure cargo checks works for the workspace without flags
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Weiner <[email protected]>
  • Loading branch information
mraerino committed Sep 10, 2023
1 parent 6a4e20a commit b90a527
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions aarch64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
cargo-features = ["per-package-target"]

[package]
name = "aarch64"
version = "0.1.0"
edition = "2021"
default-target = "aarch64-unknown-none-softfloat"

[dependencies]
bitstruct = "0.1"
Expand Down
3 changes: 3 additions & 0 deletions riscv64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
cargo-features = ["per-package-target"]

[package]
name = "riscv64"
version = "0.1.0"
edition = "2021"
default-target = "riscv64imac-unknown-none-elf"

[dependencies]
port = { path = "../port" }
Expand Down
3 changes: 3 additions & 0 deletions x86_64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
cargo-features = ["per-package-target"]

[package]
name = "x86_64"
version = "0.1.0"
edition = "2021"
default-target = "x86_64-unknown-none"

[dependencies]
bitstruct = "0.1"
Expand Down

0 comments on commit b90a527

Please sign in to comment.