Skip to content

Commit

Permalink
fix(Microkernels): Add features for binaries crate
Browse files Browse the repository at this point in the history
Ensures that registered binary is avilable for tests
  • Loading branch information
nokome committed Dec 8, 2021
1 parent 8cc3590 commit 1690ea8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions rust/kernel-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.0.0"
edition = "2021"

[dependencies]
binaries = { path = "../binaries", version = "0.0.0", features = ["binary-node"] }
kernel = { path = "../kernel", version = "0.0.0" }
kernel-micro = { path = "../kernel-micro", version = "0.0.0" }

Expand Down
1 change: 1 addition & 0 deletions rust/kernel-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.0.0"
edition = "2021"

[dependencies]
binaries = { path = "../binaries", version = "0.0.0", features = ["binary-python"] }
kernel = { path = "../kernel", version = "0.0.0" }
kernel-micro = { path = "../kernel-micro", version = "0.0.0" }

Expand Down
1 change: 1 addition & 0 deletions rust/kernel-r/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.0.0"
edition = "2021"

[dependencies]
binaries = { path = "../binaries", version = "0.0.0", features = ["binary-rscript"] }
kernel = { path = "../kernel", version = "0.0.0" }
kernel-micro = { path = "../kernel-micro", version = "0.0.0" }

Expand Down

0 comments on commit 1690ea8

Please sign in to comment.