Extract core stuff into own crates
This commit extracts five new crates:
- nu-source, which contains the core source-code handling logic in Nu,
including Text, Span, and also the pretty.rs-based debug logic
- nu-parser, which is the parser and expander logic
- nu-protocol, which is the bulk of the types and basic conveniences
used by plugins
- nu-errors, which contains ShellError, ParseError and error handling
conveniences
- nu-textview, which is the textview plugin extracted into a crate
One of the major consequences of this refactor is that it's no longer
possible to `impl X for Spanned<Y>` outside of the `nu-source` crate, so
a lot of types became more concrete (Value became a concrete type
instead of Spanned<Value>, for example).
This also turned a number of inherent methods in the main nu crate into
plain functions (impl Value {} became a bunch of functions in the
`value` namespace in `crate::data::value`).
2019-11-26 03:30:48 +01:00
|
|
|
[package]
|
2022-03-22 21:25:38 +01:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2022-04-11 20:17:06 +02:00
|
|
|
description = "Nushell's internal protocols, including its abstract syntax tree"
|
2022-03-22 21:25:38 +01:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
2020-07-05 22:12:44 +02:00
|
|
|
name = "nu-protocol"
|
2022-07-06 06:25:09 +02:00
|
|
|
version = "0.65.1"
|
2021-09-02 03:29:43 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-07-06 06:25:09 +02:00
|
|
|
nu-utils = { path = "../nu-utils", version = "0.65.1" }
|
2022-06-30 22:55:01 +02:00
|
|
|
thiserror = "1.0.31"
|
2022-06-26 14:03:38 +02:00
|
|
|
miette = { version = "5.1.0", features = ["fancy"] }
|
2021-10-02 19:02:11 +02:00
|
|
|
serde = {version = "1.0.130", features = ["derive"]}
|
2021-10-05 04:27:39 +02:00
|
|
|
chrono = { version="0.4.19", features=["serde"] }
|
2021-11-25 18:10:56 +01:00
|
|
|
indexmap = { version="1.7", features=["serde-1"] }
|
2021-10-05 04:27:39 +02:00
|
|
|
chrono-humanize = "0.2.1"
|
2021-10-25 06:01:02 +02:00
|
|
|
byte-unit = "4.0.9"
|
2021-11-19 03:51:42 +01:00
|
|
|
serde_json = { version = "1.0", optional = true }
|
2022-07-06 06:25:09 +02:00
|
|
|
nu-json = { path = "../nu-json", version = "0.65.1" }
|
2022-07-11 18:18:06 +02:00
|
|
|
typetag = "0.2.1"
|
2021-12-09 20:19:36 +01:00
|
|
|
num-format = "0.4.0"
|
2022-03-25 18:00:35 +01:00
|
|
|
sys-locale = "0.2.0"
|
2022-04-07 08:23:14 +02:00
|
|
|
regex = "1.5.4"
|
2021-11-19 03:51:42 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
plugin = ["serde_json"]
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serde_json = "1.0"
|