Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
12 of 730 committers (1.6%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.1%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
A new type of shell
Basic Info
- Host: GitHub
- Owner: nushell
- License: mit
- Language: Rust
- Default Branch: main
- Homepage: https://www.nushell.sh/
- Size: 53.8 MB
Statistics
- Stars: 36,274
- Watchers: 197
- Forks: 1,913
- Open Issues: 1,508
- Releases: 0
Topics
Metadata Files
README.md
Nushell <!-- omit in toc -->
A new type of shell.

Table of Contents <!-- omit in toc -->
- Status
- Learning About Nu
- Installation
- Configuration
- Philosophy
- Goals
- Officially Supported By
- Contributing
- License
Status
This project has reached a minimum-viable-product level of quality. Many people use it as their daily driver, but it may be unstable for some commands. Nu's design is subject to change as it matures.
Learning About Nu
The Nushell book is the primary source of Nushell documentation. You can find a full list of Nu commands in the book, and we have many examples of using Nu in our cookbook.
We're also active on Discord; come and chat with us!
Installation
To quickly install Nu:
```bash
Linux and macOS
brew install nushell
Windows
winget install nushell ```
To use Nu in GitHub Action, check setup-nu for more detail.
Detailed installation instructions can be found in the installation chapter of the book. Nu is available via many package managers:
For details about which platforms the Nushell team actively supports, see our platform support policy.
Configuration
The default configurations can be found at sample_config which are the configuration files one gets when they startup Nushell for the first time.
It sets all of the default configuration to run Nushell. From here one can then customize this file for their specific needs.
To see where config.nu is located on your system simply type this command.
rust
$nu.config-path
Please see our book for all of the Nushell documentation.
Philosophy
Nu draws inspiration from projects like PowerShell, functional programming languages, and modern CLI tools. Rather than thinking of files and data as raw streams of text, Nu looks at each input as something with structure. For example, when you list the contents of a directory what you get back is a table of rows, where each row represents an item in that directory. These values can be piped through a series of steps, in a series of commands called a 'pipeline'.
Pipelines
In Unix, it's common to pipe between commands to split up a sophisticated command over multiple steps. Nu takes this a step further and builds heavily on the idea of pipelines. As in the Unix philosophy, Nu allows commands to output to stdout and read from stdin. Additionally, commands can output structured data (you can think of this as a third kind of stream). Commands that work in the pipeline fit into one of three categories:
- Commands that produce a stream (e.g.,
ls) - Commands that filter a stream (e.g.,
where type == "dir") - Commands that consume the output of the pipeline (e.g.,
table)
Commands are separated by the pipe symbol (|) to denote a pipeline flowing left to right.
```shell ls | where type == "dir" | table
=> ╭────┬──────────┬──────┬─────────┬───────────────╮
=> │ # │ name │ type │ size │ modified │
=> ├────┼──────────┼──────┼─────────┼───────────────┤
=> │ 0 │ .cargo │ dir │ 0 B │ 9 minutes ago │
=> │ 1 │ assets │ dir │ 0 B │ 2 weeks ago │
=> │ 2 │ crates │ dir │ 4.0 KiB │ 2 weeks ago │
=> │ 3 │ docker │ dir │ 0 B │ 2 weeks ago │
=> │ 4 │ docs │ dir │ 0 B │ 2 weeks ago │
=> │ 5 │ images │ dir │ 0 B │ 2 weeks ago │
=> │ 6 │ pkg_mgrs │ dir │ 0 B │ 2 weeks ago │
=> │ 7 │ samples │ dir │ 0 B │ 2 weeks ago │
=> │ 8 │ src │ dir │ 4.0 KiB │ 2 weeks ago │
=> │ 9 │ target │ dir │ 0 B │ a day ago │
=> │ 10 │ tests │ dir │ 4.0 KiB │ 2 weeks ago │
=> │ 11 │ wix │ dir │ 0 B │ 2 weeks ago │
=> ╰────┴──────────┴──────┴─────────┴───────────────╯
```
Because most of the time you'll want to see the output of a pipeline, table is assumed.
We could have also written the above:
shell
ls | where type == "dir"
Being able to use the same commands and compose them differently is an important philosophy in Nu.
For example, we could use the built-in ps command to get a list of the running processes, using the same where as above.
```shell ps | where cpu > 0
=> ╭───┬───────┬───────────┬───────┬───────────┬───────────╮
=> │ # │ pid │ name │ cpu │ mem │ virtual │
=> ├───┼───────┼───────────┼───────┼───────────┼───────────┤
=> │ 0 │ 2240 │ Slack.exe │ 16.40 │ 178.3 MiB │ 232.6 MiB │
=> │ 1 │ 16948 │ Slack.exe │ 16.32 │ 205.0 MiB │ 197.9 MiB │
=> │ 2 │ 17700 │ nu.exe │ 3.77 │ 26.1 MiB │ 8.8 MiB │
=> ╰───┴───────┴───────────┴───────┴───────────┴───────────╯
```
Opening files
Nu can load file and URL contents as raw text or structured data (if it recognizes the format). For example, you can load a .toml file as structured data and explore it:
```shell open Cargo.toml
=> ╭──────────────────┬────────────────────╮
=> │ bin │ [table 1 row] │
=> │ dependencies │ {record 25 fields} │
=> │ dev-dependencies │ {record 8 fields} │
=> │ features │ {record 10 fields} │
=> │ package │ {record 13 fields} │
=> │ patch │ {record 1 field} │
=> │ profile │ {record 3 fields} │
=> │ target │ {record 3 fields} │
=> │ workspace │ {record 1 field} │
=> ╰──────────────────┴────────────────────╯
```
We can pipe this into a command that gets the contents of one of the columns:
```shell open Cargo.toml | get package
=> ╭───────────────┬────────────────────────────────────╮
=> │ authors │ [list 1 item] │
=> │ default-run │ nu │
=> │ description │ A new type of shell │
=> │ documentation │ https://www.nushell.sh/book/ │
=> │ edition │ 2018 │
=> │ exclude │ [list 1 item] │
=> │ homepage │ https://www.nushell.sh │
=> │ license │ MIT │
=> │ metadata │ {record 1 field} │
=> │ name │ nu │
=> │ repository │ https://github.com/nushell/nushell │
=> │ rust-version │ 1.60 │
=> │ version │ 0.72.0 │
=> ╰───────────────┴────────────────────────────────────╯
```
And if needed we can drill down further:
```shell open Cargo.toml | get package.version
=> 0.72.0
```
Plugins
Nu supports plugins that offer additional functionality to the shell and follow the same structured data model that built-in commands use. There are a few examples in the crates/nu_plugins_* directories.
Plugins are binaries that are available in your path and follow a nu_plugin_* naming convention.
These binaries interact with nu via a simple JSON-RPC protocol where the command identifies itself and passes along its configuration, making it available for use.
If the plugin is a filter, data streams to it one element at a time, and it can stream data back in return via stdin/stdout.
If the plugin is a sink, it is given the full vector of final data and is given free reign over stdin/stdout to use as it pleases.
The awesome-nu repo lists a variety of nu-plugins while the showcase repo shows off informative blog posts that have been written about Nushell along with videos that highlight technical topics that have been presented.
Goals
Nu adheres closely to a set of goals that make up its design philosophy. As features are added, they are checked against these goals.
First and foremost, Nu is cross-platform. Commands and techniques should work across platforms and Nu has first-class support for Windows, macOS, and Linux.
Nu ensures compatibility with existing platform-specific executables.
Nu's workflow and tools should have the usability expected of modern software in 2022 (and beyond).
Nu views data as either structured or unstructured. It is a structured shell like PowerShell.
Finally, Nu views data functionally. Rather than using mutation, pipelines act as a means to load, change, and save data without mutable state.
Officially Supported By
Please submit an issue or PR to be added to this list.
Contributing
See Contributing for details. Thanks to all the people who already contributed!
License
The project is made available under the MIT license. See the LICENSE file for more information.
Owner
- Name: Nushell Project
- Login: nushell
- Kind: organization
- Website: https://www.nushell.sh/
- Repositories: 14
- Profile: https://github.com/nushell
Citation (CITATION.cff)
cff-version: 1.2.0
title: 'Nushell'
message: >-
If you use this software and wish to cite it,
you can use the metadata from this file.
type: software
authors:
- name: "The Nushell Project Team"
identifiers:
- type: url
value: 'https://github.com/nushell/nushell'
description: Repository
repository-code: 'https://github.com/nushell/nushell'
url: 'https://www.nushell.sh/'
abstract: >-
The goal of the Nushell project is to take the Unix
philosophy of shells, where pipes connect simple commands
together, and bring it to the modern style of development.
Thus, rather than being either a shell, or a programming
language, Nushell connects both by bringing a rich
programming language and a full-featured shell together
into one package.
keywords:
- nushell
- shell
license: MIT
Committers
Last synced: 9 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Darren Schroeder | 3****d | 942 |
| JT | 5****r | 673 |
| Jonathan Turner | j****r@g****m | 587 |
| Jonathan Turner | j****r | 584 |
| Stefan Holderbach | s****h | 479 |
| dependabot[bot] | 4****] | 334 |
| Andrés N. Robalino | a****s@a****m | 310 |
| WindSoilder | W****r@o****m | 295 |
| Jakub Žádník | k****h@g****m | 276 |
| Fernando Herrera | f****a@g****m | 217 |
| Reilly Wood | 2****d | 205 |
| Ian Manske | i****e@p****e | 200 |
| Antoine Stevan | 4****e | 169 |
| Devyn Cairns | d****s@g****m | 164 |
| Justin Ma | h****r@o****m | 164 |
| Michael Angerman | 1****m | 137 |
| Yehuda Katz | w****s@g****m | 123 |
| Jack Wright | 5****9 | 122 |
| Douglas | 3****s | 116 |
| nibon7 | n****7@1****m | 104 |
| pwygab | 8****f | 99 |
| Maxim Zhiburt | z****t@g****m | 98 |
| Joseph T. Lyons | J****s | 93 |
| zc he | b****9@g****m | 78 |
| Jason Gedge | j****e@s****m | 67 |
| Leon | L****0@y****m | 58 |
| Jonathan Turner | j****r@m****m | 56 |
| Yash Thakur | 4****r | 55 |
| onthebridgetonowhere | 7****e | 52 |
| est31 | M****1@o****m | 52 |
| and 700 more... | ||
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 3,137
- Total pull requests: 5,504
- Average time to close issues: 6 months
- Average time to close pull requests: 12 days
- Total issue authors: 1,307
- Total pull request authors: 362
- Average comments per issue: 3.51
- Average comments per pull request: 2.43
- Merged pull requests: 4,056
- Bot issues: 18
- Bot pull requests: 609
Past Year
- Issues: 981
- Pull requests: 2,420
- Average time to close issues: 14 days
- Average time to close pull requests: 4 days
- Issue authors: 511
- Pull request authors: 171
- Average comments per issue: 1.59
- Average comments per pull request: 1.97
- Merged pull requests: 1,729
- Bot issues: 5
- Bot pull requests: 284
Top Authors
Issue Authors
- NotTheDr01ds (143)
- KAAtheWiseGit (139)
- amtoine (75)
- fdncred (62)
- kubouch (58)
- 132ikl (43)
- maxim-uvarov (34)
- j-xella (32)
- webbedspace (30)
- bobhy (28)
- sholderbach (24)
- sophiajt (19)
- crides (18)
- IanManske (17)
- weirdan (17)
Pull Request Authors
- dependabot[bot] (609)
- fdncred (459)
- sholderbach (370)
- IanManske (365)
- devyn (267)
- WindSoilder (253)
- ayax79 (223)
- NotTheDr01ds (218)
- blindFS (161)
- Bahex (140)
- hustcer (121)
- cptpiepmatz (121)
- 132ikl (118)
- amtoine (109)
- ysthakur (104)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 48
-
Total downloads:
- cargo 9,207,848 total
- npm 22,775 last-month
- Total docker downloads: 23,282,658
-
Total dependent packages: 383
(may contain duplicates) -
Total dependent repositories: 804
(may contain duplicates) - Total versions: 2,911
- Total maintainers: 8
crates.io: nu-protocol
Nushell's internal protocols, including its abstract syntax tree
- Documentation: https://docs.rs/nu-protocol/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
proxy.golang.org: github.com/nushell/nushell
- Documentation: https://pkg.go.dev/github.com/nushell/nushell#section-documentation
- License: mit
-
Latest release: v0.96.0
published 6 months ago
Rankings
crates.io: nu-plugin
Functionality for building Nushell plugins
- Documentation: https://docs.rs/nu-plugin/
- License: MIT
-
Latest release: 0.106.0
published 7 months ago
Rankings
Maintainers (1)
crates.io: nu-test-support
Support for writing Nushell tests
- Documentation: https://docs.rs/nu-test-support/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-engine
Nushell's evaluation engine
- Documentation: https://docs.rs/nu-engine/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-glob
Fork of glob. Support for matching file paths against Unix shell style patterns.
- Documentation: https://docs.rs/nu-glob/
- License: MIT/Apache-2.0
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-parser
Nushell's parser
- Documentation: https://docs.rs/nu-parser/
- License: MIT
-
Latest release: 0.106.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: nu-utils
Nushell utility functions
- Documentation: https://docs.rs/nu-utils/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-path
Path handling library for Nushell
- Documentation: https://docs.rs/nu-path/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-table
Nushell table printing
- Documentation: https://docs.rs/nu-table/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-json
Fork of serde-hjson
- Documentation: https://docs.rs/nu-json/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-command
Nushell's built-in commands
- Documentation: https://docs.rs/nu-command/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-pretty-hex
Pretty hex dump of bytes slice in the common style.
- Documentation: https://docs.rs/nu-pretty-hex/
- License: MIT
-
Latest release: 0.106.0
published 7 months ago
Rankings
Maintainers (1)
crates.io: nu-color-config
Color configuration code used by Nushell
- Documentation: https://docs.rs/nu-color-config/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-cli
CLI-related functionality for Nushell
- Documentation: https://docs.rs/nu-cli/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-cmd-lang
Nushell's core language commands
- Documentation: https://docs.rs/nu-cmd-lang/
- License: MIT
-
Latest release: 0.106.0
published 7 months ago
Rankings
crates.io: nu-system
Nushell system querying
- Documentation: https://docs.rs/nu-system/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-term-grid
Nushell grid printing
- Documentation: https://docs.rs/nu-term-grid/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-cmd-base
The foundation tools to build Nushell commands.
- Documentation: https://docs.rs/nu-cmd-base/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (2)
crates.io: nu-explore
Nushell table pager
- Documentation: https://docs.rs/nu-explore/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu_plugin_inc
A version incrementer plugin for Nushell
- Documentation: https://docs.rs/nu_plugin_inc/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-cmd-dataframe
Nushell's dataframe commands based on polars.
- Documentation: https://docs.rs/nu-cmd-dataframe/
- License: MIT
-
Latest release: 0.93.0
published almost 2 years ago
Rankings
Maintainers (1)
crates.io: nu-serde
Turn any value into a nu-protocol::Value with serde
- Documentation: https://docs.rs/nu-serde/
- License: MIT
-
Latest release: 0.44.0
published about 4 years ago
Rankings
Maintainers (1)
crates.io: nu-cmd-extra
Nushell's extra commands that are not part of the 1.0 api standard.
- Documentation: https://docs.rs/nu-cmd-extra/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu
A new type of shell
- Homepage: https://www.nushell.sh
- Documentation: https://docs.rs/nu/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
crates.io: nu-std
The standard library of Nushell
- Documentation: https://docs.rs/nu-std/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
npmjs.org: @nushell/windows-arm64
The official release of Nushell with default features included.
- Homepage: https://github.com/hustcer/nu-to-npm#readme
- License: MIT
-
Latest release: 0.106.1
published 7 months ago
Rankings
Maintainers (1)
npmjs.org: nushell
The official release of Nushell with default features included.
- Homepage: https://github.com/hustcer/nu-to-npm#readme
- License: MIT
-
Latest release: 0.106.1
published 7 months ago
Rankings
Maintainers (1)
npmjs.org: @nushell/linux-x64
The official release of Nushell with default features included.
- Homepage: https://github.com/hustcer/nu-to-npm#readme
- License: MIT
-
Latest release: 0.106.1
published 7 months ago
Rankings
Maintainers (1)
npmjs.org: @nushell/darwin-x64
The official release of Nushell with default features included.
- Homepage: https://github.com/hustcer/nu-to-npm#readme
- License: MIT
-
Latest release: 0.106.1
published 7 months ago
Rankings
Maintainers (1)
npmjs.org: @nushell/darwin-arm64
The official release of Nushell with default features included.
- Homepage: https://github.com/hustcer/nu-to-npm#readme
- License: MIT
-
Latest release: 0.106.1
published 7 months ago
Rankings
Maintainers (1)
npmjs.org: @nushell/linux-riscv64
The official release of Nushell with default features included.
- Homepage: https://github.com/hustcer/nu-to-npm#readme
- License: MIT
-
Latest release: 0.106.1
published 7 months ago
Rankings
Maintainers (1)
npmjs.org: @nushell/linux-arm64
The official release of Nushell with default features included.
- Homepage: https://github.com/hustcer/nu-to-npm#readme
- License: MIT
-
Latest release: 0.106.1
published 7 months ago
Rankings
Maintainers (1)
npmjs.org: @nushell/windows-x64
The official release of Nushell with default features included.
- Homepage: https://github.com/hustcer/nu-to-npm#readme
- License: MIT
-
Latest release: 0.106.1
published 7 months ago
Rankings
Maintainers (1)
npmjs.org: @nushell/linux-arm
The official release of Nushell with default features included.
- Homepage: https://github.com/hustcer/nu-to-npm#readme
- License: MIT
-
Latest release: 0.106.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: nu_plugin_query
A Nushell plugin to query JSON, XML, and various web data
- Documentation: https://docs.rs/nu_plugin_query/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu_plugin_gstat
A git status plugin for Nushell
- Documentation: https://docs.rs/nu_plugin_gstat/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-experimental
Nushell experimental options
- Documentation: https://docs.rs/nu-experimental/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (2)
crates.io: nu_plugin_formats
An I/O plugin for a set of file formats for Nushell
- Documentation: https://docs.rs/nu_plugin_formats/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-lsp
Nushell's integrated LSP server
- Documentation: https://docs.rs/nu-lsp/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu_plugin_polars
Nushell dataframe plugin commands based on polars.
- Documentation: https://docs.rs/nu_plugin_polars/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-plugin-core
Shared internal functionality to support Nushell plugins
- Documentation: https://docs.rs/nu-plugin-core/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-plugin-protocol
Protocol type definitions for Nushell plugins
- Documentation: https://docs.rs/nu-plugin-protocol/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-plugin-engine
Functionality for running Nushell plugins from a Nushell engine
- Documentation: https://docs.rs/nu-plugin-engine/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-cmd-plugin
Commands for managing Nushell plugins.
- Documentation: https://docs.rs/nu-cmd-plugin/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nuon
Support for the NUON format.
- Documentation: https://docs.rs/nuon/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-plugin-test-support
Testing support for Nushell plugins
- Documentation: https://docs.rs/nu-plugin-test-support/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: nu-derive-value
Macros implementation of #[derive(FromValue, IntoValue)]
- Documentation: https://docs.rs/nu-derive-value/
- License: MIT
-
Latest release: 0.107.0
published 6 months ago
Rankings
Maintainers (1)
Dependencies
- actions/checkout v4 composite
- rustsec/audit-check v1.4.1 composite
- actions-rust-lang/setup-rust-toolchain v1.5.0 composite
- actions/checkout v4 composite
- actions/setup-python v4 composite
- JasonEtco/create-an-issue v2.9.1 composite
- actions-rust-lang/setup-rust-toolchain v1.5.0 composite
- actions/checkout v4 composite
- hustcer/setup-nu v3.6 composite
- softprops/action-gh-release v0.1.15 composite
- actions-rust-lang/setup-rust-toolchain v1.5.0 composite
- actions/checkout v4 composite
- hustcer/setup-nu v3.6 composite
- softprops/action-gh-release v0.1.15 composite
- actions/checkout v4 composite
- crate-ci/typos v1.16.13 composite
- vedantmgoyal2009/winget-releaser v2 composite
- 582 dependencies
- assert_cmd 2.0 development
- criterion 0.5 development
- nu-test-support 0.85.1 development
- pretty_assertions 1.4 development
- rstest 0.18 development
- serial_test 2.0 development
- tempfile 3.8 development
- crossterm 0.27
- ctrlc 3.4
- log 0.4
- miette 5.10
- mimalloc 0.1.37
- nu-ansi-term 0.49.0
- nu-cli 0.85.1
- nu-cmd-base 0.85.1
- nu-cmd-dataframe 0.85.1
- nu-cmd-extra 0.85.1
- nu-cmd-lang 0.85.1
- nu-color-config 0.85.1
- nu-command 0.85.1
- nu-engine 0.85.1
- nu-explore 0.85.1
- nu-json 0.85.1
- nu-parser 0.85.1
- nu-path 0.85.1
- nu-plugin 0.85.1
- nu-pretty-hex 0.85.1
- nu-protocol 0.85.1
- nu-std 0.85.1
- nu-system 0.85.1
- nu-table 0.85.1
- nu-term-grid 0.85.1
- nu-utils 0.85.1
- reedline 0.24.0
- serde_json 1.0
- simplelog 0.12
- time 0.3
- nu-cmd-lang 0.85.1 development
- nu-command 0.85.1 development
- nu-test-support 0.85.1 development
- rstest 0.18.1 development
- chrono 0.4
- crossterm 0.27
- fancy-regex 0.11
- fuzzy-matcher 0.3
- is_executable 1.0
- log 0.4
- miette 5.10
- nu-ansi-term 0.49.0
- nu-cmd-base 0.85.1
- nu-color-config 0.85.1
- nu-engine 0.85.1
- nu-parser 0.85.1
- nu-path 0.85.1
- nu-protocol 0.85.1
- nu-utils 0.85.1
- once_cell 1.18
- percent-encoding 2
- reedline 0.24.0
- sysinfo 0.29
- unicode-segmentation 1.10
- nu-cmd-lang 0.85.1 development
- nu-test-support 0.85.1 development
- chrono 0.4
- fancy-regex 0.11
- indexmap 2.0
- nu-engine 0.85.1
- nu-parser 0.85.1
- nu-protocol 0.85.1
- num 0.4
- polars 0.32
- polars-io 0.32
- serde 1.0
- sqlparser 0.36.1
- nu-cmd-lang 0.85.1 development
- nu-command 0.85.1 development
- nu-test-support 0.85.1 development
- Inflector 0.11
- ahash 0.8.3
- fancy-regex 0.11.0
- htmlescape 0.3.1
- nu-ansi-term 0.49.0
- nu-cmd-base 0.85.1
- nu-engine 0.85.1
- nu-json 0.85.1
- nu-parser 0.85.1
- nu-pretty-hex 0.85.1
- nu-protocol 0.85.1
- nu-utils 0.85.1
- num-traits 0.2
- rust-embed 8.0.0
- serde 1.0.164
- serde_urlencoded 0.7.1
- nu-test-support 0.85.1 development
- nu-ansi-term 0.49.0
- nu-engine 0.85.1
- nu-json 0.85.1
- nu-protocol 0.85.1
- nu-utils 0.85.1
- serde 1.0
- dirs-next 2.0 development
- mockito 1.2 development
- nu-cmd-lang 0.85.1 development
- nu-test-support 0.85.1 development
- quickcheck 1.0 development
- quickcheck_macros 1.0 development
- rstest 0.18 development
- alphanumeric-sort 1.5
- base64 0.21
- bracoxide 0.1.2
- byteorder 1.4
- bytesize 1.3
- calamine 0.22
- chardetng 0.1.17
- chrono 0.4
- chrono-humanize 0.2.3
- chrono-tz 0.8
- crossterm 0.27
- csv 1.2
- dialoguer 0.10
- digest 0.10
- dtparse 2.0
- encoding_rs 0.8
- fancy-regex 0.11
- filesize 0.2
- filetime 0.2
- fs_extra 1.3
- htmlescape 0.3
- indexmap 2.0
- indicatif 0.17
- itertools 0.11
- log 0.4
- lscolors 0.15
- md5 0.10
- miette 5.10
- mime 0.3
- mime_guess 2.0
- native-tls 0.2
- notify-debouncer-full 0.3
- nu-ansi-term 0.49.0
- nu-cmd-base 0.85.1
- nu-color-config 0.85.1
- nu-engine 0.85.1
- nu-glob 0.85.1
- nu-json 0.85.1
- nu-parser 0.85.1
- nu-path 0.85.1
- nu-pretty-hex 0.85.1
- nu-protocol 0.85.1
- nu-system 0.85.1
- nu-table 0.85.1
- nu-term-grid 0.85.1
- nu-utils 0.85.1
- num 0.4
- num-format 0.4
- num-traits 0.2
- once_cell 1.18
- open 5.0
- os_pipe 1.1
- pathdiff 0.2
- percent-encoding 2.3
- powierza-coefficient 1.0
- print-positions 0.6
- quick-xml 0.30
- rand 0.8
- rayon 1.8
- regex 1.9.5
- roxmltree 0.18
- rusqlite 0.29
- same-file 1.0
- serde 1.0
- serde_json 1.0
- serde_urlencoded 0.7
- serde_yaml 0.9
- sha2 0.10
- sysinfo 0.29
- tabled 0.14.0
- terminal_size 0.3
- titlecase 2.0
- toml 0.8
- unicode-segmentation 1.10
- ureq 2.7
- url 2.2
- uu_cp 0.0.21
- uuid 1.3
- wax 0.5
- which 4.4
- linked-hash-map 0.5
- num-traits 0.2
- serde 1.0
- rstest 0.18 development
- bytesize 1.3
- chrono 0.4
- itertools 0.11
- log 0.4
- nu-engine 0.85.1
- nu-path 0.85.1
- nu-plugin 0.85.1
- nu-protocol 0.85.1
- serde_json 1.0
- heapless 0.7 development
- rand 0.8 development
- nu-ansi-term 0.49.0
- nu-test-support 0.85.1 development
- rstest 0.18 development
- serde_json 1.0 development
- strum 0.25 development
- strum_macros 0.25 development
- byte-unit 4.0
- chrono 0.4
- chrono-humanize 0.2
- fancy-regex 0.11
- indexmap 2.0
- lru 0.11
- miette 5.10
- nu-path 0.85.1
- nu-system 0.85.1
- nu-utils 0.85.1
- num-format 0.4
- serde 1.0
- serde_json 1.0
- thiserror 1.0
- typetag 0.2
- fancy-regex 0.11
- nu-ansi-term 0.49.0
- nu-color-config 0.85.1
- nu-engine 0.85.1
- nu-protocol 0.85.1
- nu-utils 0.85.1
- once_cell 1.18
- tabled 0.14.0
- alpine latest build