Skip to content
Draft
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
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,10 @@ jobs:
# both the local and the broker/host endpoints of the current
# Unix-domain-socket control channel.
#
# - `litebox_broker_transport_windows_userland` is allowed to have
# `std` access, since it is the Windows-userland binding for the
# broker control channel.
#
# - `litebox_broker_platform_linux_userland` is allowed to have
# `std` access, since it owns hosted Linux broker resources such as
# sockets and the epoll reactor.
Expand Down Expand Up @@ -306,6 +310,7 @@ jobs:
-not -path './Cargo.toml' \
-not -path './litebox_broker_platform_linux_userland/Cargo.toml' \
-not -path './litebox_broker_transport_linux_userland/Cargo.toml' \
-not -path './litebox_broker_transport_windows_userland/Cargo.toml' \
-not -path './litebox_broker_userland/Cargo.toml' \
-not -path './litebox_platform_linux_userland/Cargo.toml' \
-not -path './litebox_platform_windows_userland/Cargo.toml' \
Expand Down
16 changes: 16 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ members = [
"litebox_broker_host",
"litebox_broker_transport",
"litebox_broker_transport_linux_userland",
"litebox_broker_transport_windows_userland",
"litebox_broker_userland",
"litebox_common_linux",
"litebox_common_windows",
Expand Down Expand Up @@ -45,6 +46,7 @@ default-members = [
"litebox_broker_host",
"litebox_broker_transport",
"litebox_broker_transport_linux_userland",
"litebox_broker_transport_windows_userland",
"litebox_broker_userland",
"litebox_common_linux",
"litebox_common_windows",
Expand Down
1 change: 1 addition & 0 deletions dev_tests/src/boilerplate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ const SKIP_FILES: &[&str] = &[
"litebox_runner_linux_on_windows_userland/tests/test-bins/hello_thread_static",
"litebox_runner_linux_on_windows_userland/tests/test-bins/hello_world_dyn",
"litebox_runner_linux_on_windows_userland/tests/test-bins/hello_world_static",
"litebox_runner_linux_on_windows_userland/tests/test-bins/pipe_broker",
"litebox_runner_linux_on_windows_userland/tests/test-bins/thread_static",
"litebox_syscall_rewriter/tests/hello",
"litebox_syscall_rewriter/tests/hello-32",
Expand Down
23 changes: 23 additions & 0 deletions litebox_broker_transport_windows_userland/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[package]
name = "litebox_broker_transport_windows_userland"
version = "0.1.0"
edition = "2024"

[dependencies]
litebox_broker_protocol = { path = "../litebox_broker_protocol", version = "0.1.0" }
litebox_broker_transport = { path = "../litebox_broker_transport", version = "0.1.0" }

[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.60.2", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Diagnostics_Debug",
"Win32_System_IO",
"Win32_System_Memory",
"Win32_System_Pipes",
"Win32_System_Threading",
] }

[lints]
workspace = true
Loading
Loading