mirror of
https://github.com/nushell/nushell.git
synced 2025-04-27 06:38:21 +02:00
# Description Added fix for #7981 - Replaced crate serde_ini with rust-ini for package nu-command/from # Tests + Formatting Added a test to support addition of the rust-ini crate. `cargo test --package nu-command --lib -- formats::from::ini::tests --nocapture` Executed all tests. `cargo test --workspace` --------- Co-authored-by: Nitin Londhe <nitin.londhe@genmills.com>
36 lines
595 B
Rust
36 lines
595 B
Rust
mod command;
|
|
mod csv;
|
|
mod delimited;
|
|
mod eml;
|
|
mod ics;
|
|
mod ini;
|
|
mod json;
|
|
mod nuon;
|
|
mod ods;
|
|
mod ssv;
|
|
mod toml;
|
|
mod tsv;
|
|
mod url;
|
|
mod vcf;
|
|
mod xlsx;
|
|
mod xml;
|
|
mod yaml;
|
|
|
|
pub use self::csv::FromCsv;
|
|
pub use self::toml::FromToml;
|
|
pub use self::url::FromUrl;
|
|
pub use crate::formats::from::ini::FromIni;
|
|
pub use command::From;
|
|
pub use eml::FromEml;
|
|
pub use ics::FromIcs;
|
|
pub use json::FromJson;
|
|
pub use nuon::FromNuon;
|
|
pub use ods::FromOds;
|
|
pub use ssv::FromSsv;
|
|
pub use tsv::FromTsv;
|
|
pub use vcf::FromVcf;
|
|
pub use xlsx::FromXlsx;
|
|
pub use xml::FromXml;
|
|
pub use yaml::FromYaml;
|
|
pub use yaml::FromYml;
|