forked from extern/nushell
817eacccd8
* removes unused features. * Adds back multithreading feature to sysinfo. * Adds back alloc for percent-encoding * Adds updated lock file. * Missed one sysinfo. * `indexmap` just defaults * Revert `miette``default-features=false` Co-authored-by: Stefan Holderbach <sholderbach@users.noreply.github.com> Co-authored-by: JT <547158+jntrnr@users.noreply.github.com>
25 lines
609 B
TOML
25 lines
609 B
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "Functionality for building Nushell plugins"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu-plugin"
|
|
version = "0.71.1"
|
|
|
|
[dependencies]
|
|
bincode = "1.3.3"
|
|
nu-protocol = { path = "../nu-protocol", version = "0.71.1" }
|
|
nu-engine = { path = "../nu-engine", version = "0.71.1" }
|
|
serde = { version = "1.0.143" }
|
|
serde_json = { version = "1.0"}
|
|
rmp = "0.8.11"
|
|
rmp-serde = "1.1.0"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "encoder_benchmark"
|
|
harness = false
|