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 02:30:48 +00:00
|
|
|
[package]
|
2022-03-22 20:25:38 +00:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2022-04-11 18:17:06 +00:00
|
|
|
description = "Nushell's parser"
|
2022-08-14 12:21:20 +00:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-parser"
|
2022-03-22 20:25:38 +00:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
2020-07-05 20:12:44 +00:00
|
|
|
name = "nu-parser"
|
2023-09-20 06:38:42 +00:00
|
|
|
version = "0.85.1"
|
2023-09-16 20:32:53 +00:00
|
|
|
exclude = ["/fuzz"]
|
2021-08-10 18:51:08 +00:00
|
|
|
|
2023-02-12 22:22:00 +00:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-08-10 18:51:08 +00:00
|
|
|
[dependencies]
|
2023-09-20 06:38:42 +00:00
|
|
|
nu-engine = { path = "../nu-engine", version = "0.85.1" }
|
|
|
|
nu-path = { path = "../nu-path", version = "0.85.1" }
|
|
|
|
nu-plugin = { path = "../nu-plugin", optional = true, version = "0.85.1" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.85.1" }
|
2023-05-18 16:37:20 +00:00
|
|
|
|
2023-09-11 09:55:21 +00:00
|
|
|
bytesize = "1.3"
|
2023-05-26 15:32:48 +00:00
|
|
|
chrono = { default-features = false, features = ['std'], version = "0.4" }
|
2023-09-08 23:12:45 +00:00
|
|
|
itertools = "0.11"
|
2022-01-01 21:42:50 +00:00
|
|
|
log = "0.4"
|
2023-05-18 16:37:20 +00:00
|
|
|
serde_json = "1.0"
|
2021-11-02 20:56:00 +00:00
|
|
|
|
2023-04-07 11:40:05 +00:00
|
|
|
[dev-dependencies]
|
2023-08-08 17:11:05 +00:00
|
|
|
rstest = { version = "0.18", default-features = false }
|
2023-04-07 11:40:05 +00:00
|
|
|
|
2021-11-02 20:56:00 +00:00
|
|
|
[features]
|
2021-12-03 14:29:55 +00:00
|
|
|
plugin = ["nu-plugin"]
|