nushell/crates
Michael Angerman 356e05177c
nu-cmd-extra crate infrastructure in place with the Bits command as the model for adding other commands (#9327)
I wanted to get the infrastructure in place for starters for our
*nu-cmd-extra* crate...

The plan is to put inside here the following commands...

* bits
* bytes
* math

I thought it would be easier to do one at a time as well as get the
nu-cmd-extra crate out there on crates.io
for this upcoming release...

Once this lands the infrastructure will be in place to move over the
other noted commands for now...
And then add other stuff we do NOT want to be in 1.0.
2023-06-01 10:46:16 -07:00
..
nu_plugin_custom_values update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu_plugin_example bump nushell from release version to development version (#9215) 2023-05-17 07:59:01 -05:00
nu_plugin_formats update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu_plugin_gstat update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu_plugin_inc update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu_plugin_python update nu_plugin_python due to signature changes (#8107) 2023-02-18 13:27:24 +00:00
nu_plugin_query update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu-cli restore cursor shape when exits (#9314) 2023-05-30 09:38:45 -05:00
nu-cmd-dataframe Add a datepart expression for dfr to be used with dfr with-column (#9285) 2023-05-30 09:41:18 -05:00
nu-cmd-extra nu-cmd-extra crate infrastructure in place with the Bits command as the model for adding other commands (#9327) 2023-06-01 10:46:16 -07:00
nu-cmd-lang nu-cmd-extra crate infrastructure in place with the Bits command as the model for adding other commands (#9327) 2023-06-01 10:46:16 -07:00
nu-color-config update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu-command nu-cmd-extra crate infrastructure in place with the Bits command as the model for adding other commands (#9327) 2023-06-01 10:46:16 -07:00
nu-engine remove unused dependencies (#9230) 2023-05-18 11:37:20 -05:00
nu-explore nu-explore/ Fix recursive table issue; (#9321) 2023-05-30 09:59:56 -05:00
nu-glob Cut down on unnecessary parsing for SyntaxShape::Any (#9280) 2023-05-25 07:53:57 +12:00
nu-json update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu-parser fix conflict between filesize and hexadecimal numbers (#9309) 2023-05-28 12:56:58 +02:00
nu-path update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu-plugin update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu-pretty-hex update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu-protocol make insert, update, upsert support lazy records (#9323) 2023-05-31 06:27:55 -05:00
nu-std Merge stack before printing (#9304) 2023-05-29 19:03:00 -05:00
nu-system update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu-table update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu-term-grid update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu-test-support update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
nu-utils update most dependencies except where deeper code changes are needed (#9296) 2023-05-26 10:32:48 -05:00
README.md Remove old nushell/merge engine-q 2022-02-07 14:54:06 -05:00

Nushell core libraries and plugins

These sub-crates form both the foundation for Nu and a set of plugins which extend Nu with additional functionality.

Foundational libraries are split into two kinds of crates:

  • Core crates - those crates that work together to build the Nushell language engine
  • Support crates - a set of crates that support the engine with additional features like JSON support, ANSI support, and more.

Plugins are likewise also split into two types:

  • Core plugins - plugins that provide part of the default experience of Nu, including access to the system properties, processes, and web-connectivity features.
  • Extra plugins - these plugins run a wide range of different capabilities like working with different file types, charting, viewing binary data, and more.