notify-rs / notify

🔭 Cross-platform filesystem notification library for Rust.
https://docs.rs/notify
2.76k stars 222 forks source link

Fix build for DragonFlyBSD. #592

Closed waywardmonkeys closed 5 months ago

waywardmonkeys commented 6 months ago

The correct target_os for this is dragonfly, not dragonflybsd.

This was introduced in 8399e4195b31f6f188109363292ed220226146f4.

waywardmonkeys commented 6 months ago

This can be seen by doing a build with nightly after the check-cfg feature was added.

0xpr03 commented 5 months ago

Fix is valid as documented per https://doc.rust-lang.org/reference/conditional-compilation.html#target_os

Thanks!