mirror of
https://github.com/nushell/nushell
synced 2025-01-08 11:18:58 +00:00
efdfeac55e
Following up on #7180 with some feature cleanup: - Move the `database` feature from `plugin` to `default` - Rename the `database` feature to `sqlite` - Remove `--features=extra` from a lot of scripts etc. - No need to specify this, the `extra` feature is now the same as the default feature set - Remove the now-redundant 2nd Ubuntu test run
69 lines
1.1 KiB
Rust
69 lines
1.1 KiB
Rust
mod bits;
|
|
mod bytes;
|
|
mod charting;
|
|
mod conversions;
|
|
mod core_commands;
|
|
mod date;
|
|
mod default_context;
|
|
mod deprecated;
|
|
mod env;
|
|
mod example_test;
|
|
mod experimental;
|
|
mod filesystem;
|
|
mod filters;
|
|
mod formats;
|
|
mod generators;
|
|
mod hash;
|
|
mod input_handler;
|
|
mod math;
|
|
mod misc;
|
|
mod network;
|
|
mod path;
|
|
mod platform;
|
|
mod random;
|
|
mod shells;
|
|
mod sort_utils;
|
|
mod strings;
|
|
mod system;
|
|
mod viewers;
|
|
|
|
pub use bits::*;
|
|
pub use bytes::*;
|
|
pub use charting::*;
|
|
pub use conversions::*;
|
|
pub use core_commands::*;
|
|
pub use date::*;
|
|
pub use default_context::*;
|
|
pub use deprecated::*;
|
|
pub use env::*;
|
|
#[cfg(test)]
|
|
pub use example_test::test_examples;
|
|
pub use experimental::*;
|
|
pub use filesystem::*;
|
|
pub use filters::*;
|
|
pub use formats::*;
|
|
pub use generators::*;
|
|
pub use hash::*;
|
|
pub use math::*;
|
|
pub use misc::*;
|
|
pub use network::*;
|
|
pub use path::*;
|
|
pub use platform::*;
|
|
pub use random::*;
|
|
pub use shells::*;
|
|
pub use sort_utils::*;
|
|
pub use strings::*;
|
|
pub use system::*;
|
|
pub use viewers::*;
|
|
|
|
#[cfg(feature = "dataframe")]
|
|
mod dataframe;
|
|
|
|
#[cfg(feature = "dataframe")]
|
|
pub use dataframe::*;
|
|
|
|
#[cfg(feature = "sqlite")]
|
|
mod database;
|
|
|
|
#[cfg(feature = "sqlite")]
|
|
pub use database::*;
|