mirror of
https://github.com/danbulant/nushell
synced 2026-05-24 12:35:59 +00:00
add a couple more features (#3749)
This commit is contained in:
parent
1943071d12
commit
1911aad57f
1 changed files with 10 additions and 0 deletions
|
|
@ -231,6 +231,16 @@ fn features_enabled() -> Vec<String> {
|
||||||
names.push("trash".to_string());
|
names.push("trash".to_string());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "dataframe")]
|
||||||
|
{
|
||||||
|
names.push("dataframe".to_string());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "table-pager")]
|
||||||
|
{
|
||||||
|
names.push("table-pager".to_string());
|
||||||
|
}
|
||||||
|
|
||||||
// #[cfg(feature = "binaryview")]
|
// #[cfg(feature = "binaryview")]
|
||||||
// {
|
// {
|
||||||
// names.push("binaryview".to_string());
|
// names.push("binaryview".to_string());
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue