nushell/crates/nu-parser/Cargo.toml
Darren Schroeder 955de76116
bump to dev version 0.83.2 (#9866)
# Description

This PR bumps the development version of nushell to version 0.83.2.
2023-07-30 22:16:57 +02:00

30 lines
776 B
TOML

[package]
authors = ["The Nushell Project Developers"]
description = "Nushell's parser"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-parser"
edition = "2021"
license = "MIT"
name = "nu-parser"
version = "0.83.2"
[lib]
bench = false
[dependencies]
nu-engine = { path = "../nu-engine", version = "0.83.2" }
nu-path = {path = "../nu-path", version = "0.83.2" }
nu-plugin = { path = "../nu-plugin", optional = true, version = "0.83.2" }
nu-protocol = { path = "../nu-protocol", version = "0.83.2" }
bytesize = "1.2"
chrono = { default-features = false, features = ['std'], version = "0.4" }
itertools = "0.10"
log = "0.4"
serde_json = "1.0"
[dev-dependencies]
rstest = { version = "0.17", default-features = false }
[features]
plugin = ["nu-plugin"]