Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
radicle-systemd: Guard `mod listen` for Unix
Merged lorenz opened 7 months ago

This crate does not build on Windows, because there is a Unix-only use in mod listen. To get the crate to build, guard the module appropriately.

1 file changed +1 -1 5cd016b5 5cd016b5
modified crates/radicle-systemd/src/lib.rs
@@ -3,5 +3,5 @@
#[cfg(all(feature = "journal", target_os = "linux"))]
pub mod journal;

-
#[cfg(feature = "listen")]
+
#[cfg(all(feature = "listen", unix))]
pub mod listen;