nushell/crates/nu-command/tests/format_conversions/mod.rs
Stefan Holderbach 0c7a8e3634
Remove dead BSON related tests (#10458)
Those tests where behind a feature flag `bson` that is never defined in
`Cargo.toml`

Remove them.
2023-09-21 20:01:49 +02:00

16 lines
180 B
Rust

mod csv;
#[cfg(feature = "extra")]
mod html;
mod json;
mod markdown;
mod nuon;
mod ods;
mod ssv;
mod toml;
mod tsv;
#[cfg(feature = "extra")]
mod url;
mod xlsx;
mod xml;
mod yaml;