Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -327,12 +327,6 @@ jobs:
# - `litebox_platform_lvbs` has a custom target (`no_std`), so it does
# not work with the current no_std checker.
#
# - `litebox_platform_multiplex` is allowed to have `std` access (in
# its default feature set) because `litebox_platform_linux_userland`
# has access, and this is just a multiplexer. Ideally, we'd do a
# more precise check, but as long as we are tracking the underlying
# platforms, we are unlikely to hit any significant issues here.
#
# - `litebox_runner_linux_on_windows_userland` is allowed to have `std`
# access since it needs to actually access the file-system, pull in
# relevant files, and then actually trigger LiteBox itself.
Expand Down Expand Up @@ -396,7 +390,6 @@ jobs:
-not -path './litebox_runner_linux_on_windows_userland/Cargo.toml' \
-not -path './litebox_runner_windows_on_linux_userland/Cargo.toml' \
-not -path './litebox_platform_lvbs/Cargo.toml' \
-not -path './litebox_platform_multiplex/Cargo.toml' \
-not -path './litebox_runner_linux_userland/Cargo.toml' \
-not -path './litebox_runner_windows_userland/Cargo.toml' \
-not -path './litebox_runner_lvbs/Cargo.toml' \
Expand Down
20 changes: 2 additions & 18 deletions Cargo.lock

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

2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ members = [
"litebox_platform_linux_userland",
"litebox_platform_windows_userland",
"litebox_platform_lvbs",
"litebox_platform_multiplex",
"litebox_runner_linux_userland",
"litebox_runner_linux_on_windows_userland",
"litebox_runner_windows_on_linux_userland",
Expand Down Expand Up @@ -64,7 +63,6 @@ default-members = [
"litebox_platform_linux_userland",
"litebox_platform_windows_userland",
"litebox_platform_lvbs",
"litebox_platform_multiplex",
"litebox_runner_linux_userland",
"litebox_runner_linux_on_windows_userland",
"litebox_runner_windows_on_linux_userland",
Expand Down
9 changes: 4 additions & 5 deletions dev_tests/src/ratchet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,21 @@ fn ratchet_globals() -> Result<()> {
ratchet(
&[
("dev_bench/", 1),
("litebox/", 7),
("litebox_broker_core/", 1),
("litebox_broker_transport_linux_userland/", 1),
("litebox_broker_userland/", 1),
("litebox/", 7),
("litebox_platform/", 2),
("litebox_platform_linux_kernel/", 5),
("litebox_platform_linux_userland/", 5),
("litebox_platform_lvbs/", 22),
("litebox_platform_multiplex/", 1),
("litebox_platform_lvbs/", 21),
("litebox_platform_windows_userland/", 8),
("litebox_runner_lvbs/", 6),
("litebox_runner_lvbs/", 8),
("litebox_runner_snp/", 2),
("litebox_runner_windows_userland/", 2),
("litebox_shim_linux/", 2),
("litebox_shim_optee/", 6),
("litebox_shim_windows/", 1),
("litebox_runner_windows_userland/", 2),
],
|file| {
Ok(file
Expand Down
Loading
Loading