fish-shell/fish-rust
Mahmoud Al-Qudsi 34a4c7de7f Add BSD feature
This should be used in lieu of manually targeting individual operating systems
when using features shared by all BSD families.

e.g. instead of

   #[cfg(any(target_os = "freebsd", target_os = "dragonflybsd", ...))]
   fn foo() { }

you would use

    #[cfg(feature = "bsd")]
    fn foo() { }

This feature is automatically detected at build-time (see build.rs changes) and
should *not* be enabled manually. Additionally, this feature may not be used to
conditionally require any other dependency, as that isn't supported for
auto-enabled features.
2023-03-19 17:55:22 -05:00
..
src Rewrite wait handles and wait handle store in Rust 2023-03-18 18:53:04 -07:00
widestring-suffix Initial Rust commit 2023-02-02 19:34:47 -07:00
build.rs Add BSD feature 2023-03-19 17:55:22 -05:00
Cargo.lock Rewrite wait handles and wait handle store in Rust 2023-03-18 18:53:04 -07:00
Cargo.toml Add BSD feature 2023-03-19 17:55:22 -05:00