mirror of
https://github.com/nushell/nushell.git
synced 2025-01-14 02:08:51 +01:00
5d8bedfbe4
# Description as we now have a prelude thanks to #8627, i'd like to work on the structure of the library 😋 and i think the first step is to make it a true standalone crate 😏 this PR - moves all the library from `crates/nu-utils/standard_library/` to `crates/nu-std/` - moves the `rust` loading code from `src/run.rs` to `crates/nu-std/src/lib.rs`
15 lines
499 B
TOML
15 lines
499 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-cli = { version = "0.78.1", path = "../nu-cli" }
|
|
nu-parser = { version = "0.78.1", path = "../nu-parser" }
|
|
nu-protocol = { version = "0.78.1", path = "../nu-protocol" }
|