mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
60e6ea5abd
now nu_std only depends on nu_parser, nu_protocol and miette and removes the nu_cli dependency this enables developers moving forward to come along and implement their own CLI's without having to pull in a redundant nu-cli which will not be needed for them. I did this by moving report_error into nu_protocol which nu_std already has a dependency on anyway.... - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass - `cargo run -- crates/nu-std/tests.nu` to run the tests for the standard library > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ```
14 lines
447 B
TOML
14 lines
447 B
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "The standard library of Nushell"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-std"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu-std"
|
|
version = "0.78.1"
|
|
|
|
[dependencies]
|
|
miette = { version = "5.6.0", features = ["fancy-no-backtrace"] }
|
|
nu-parser = { version = "0.78.1", path = "../nu-parser" }
|
|
nu-protocol = { version = "0.78.1", path = "../nu-protocol" }
|