Move nu-data out of nu-cli (#2369)

* WIP for moving nu-data out

* Refactor nu-data out of nu-cli

* Remove unwraps

* Remove unwraps
This commit is contained in:
Jonathan Turner
2020-08-18 19:00:02 +12:00
committed by GitHub
parent 1d5518a214
commit 738541f727
73 changed files with 715 additions and 514 deletions

10
crates/nu-data/src/lib.rs Normal file
View File

@@ -0,0 +1,10 @@
pub mod base;
pub mod command;
pub mod config;
pub mod dict;
pub mod primitive;
pub mod types;
pub mod utils;
pub mod value;
pub use dict::TaggedListBuilder;