mirror of
https://github.com/nushell/nushell.git
synced 2025-04-04 22:48:41 +02:00
# Description nushell is verified to work on FreeBSD 14 with these patches. What isn't supported on FreeBSD: * the crate 'procfs' doesn't support FreeBSD yet, all functionality depending on procfs is disabled * several RLIMIT_* values aren't supported on FreeBSD - functions related to these are disabled # User-Facing Changes n/a # Tests + Formatting n/a # After Submitting n/a --------- Co-authored-by: sholderbach <sholderbach@users.noreply.github.com>
34 lines
650 B
Rust
34 lines
650 B
Rust
mod complete;
|
|
mod exec;
|
|
mod nu_check;
|
|
#[cfg(any(
|
|
target_os = "android",
|
|
target_os = "linux",
|
|
target_os = "freebsd",
|
|
target_os = "macos",
|
|
target_os = "windows"
|
|
))]
|
|
mod ps;
|
|
#[cfg(windows)]
|
|
mod registry_query;
|
|
mod run_external;
|
|
mod sys;
|
|
mod which_;
|
|
|
|
pub use complete::Complete;
|
|
pub use exec::Exec;
|
|
pub use nu_check::NuCheck;
|
|
#[cfg(any(
|
|
target_os = "android",
|
|
target_os = "linux",
|
|
target_os = "freebsd",
|
|
target_os = "macos",
|
|
target_os = "windows"
|
|
))]
|
|
pub use ps::Ps;
|
|
#[cfg(windows)]
|
|
pub use registry_query::RegistryQuery;
|
|
pub use run_external::{External, ExternalCommand};
|
|
pub use sys::Sys;
|
|
pub use which_::Which;
|