forked from extern/nushell
a7295c8f1b
* add MessagePack as a plugin protocol * tmp merge from remote * add benchmark * use less benchmark group, and add README for analysing benchmark result * update README * update README * rewrite * remove comment * rename * fmt Co-authored-by: Darren Schroeder <343840+fdncred@users.noreply.github.com>
28 lines
683 B
TOML
28 lines
683 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.67.1"
|
|
|
|
[dependencies]
|
|
bincode = "1.3.3"
|
|
capnp = "0.14.3"
|
|
nu-protocol = { path = "../nu-protocol", version = "0.67.1" }
|
|
nu-engine = { path = "../nu-engine", version = "0.67.1" }
|
|
serde = {version = "1.0.143", features = ["derive"]}
|
|
serde_json = { version = "1.0"}
|
|
byte-order = "0.3.0"
|
|
rmp = "0.8.11"
|
|
rmp-serde = "1.1.0"
|
|
rmpv = "1.0.0"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "encoder_benchmark"
|
|
harness = false
|