2019-12-27 14:30:14 +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 = "Functionality for building Nushell plugins"
|
2022-08-14 14:21:20 +02:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin"
|
2022-03-22 21:25:38 +01:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
2020-07-05 22:12:44 +02:00
|
|
|
name = "nu-plugin"
|
2022-12-21 19:35:50 +01:00
|
|
|
version = "0.73.1"
|
2021-10-23 22:08:54 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2022-07-25 18:32:56 +02:00
|
|
|
bincode = "1.3.3"
|
2022-12-21 19:35:50 +01:00
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.73.1" }
|
|
|
|
nu-engine = { path = "../nu-engine", version = "0.73.1" }
|
2022-11-12 06:44:56 +01:00
|
|
|
serde = { version = "1.0.143" }
|
2021-12-12 12:50:35 +01:00
|
|
|
serde_json = { version = "1.0"}
|
2022-08-21 13:13:38 +02:00
|
|
|
rmp = "0.8.11"
|
|
|
|
rmp-serde = "1.1.0"
|
2022-08-23 18:49:51 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
criterion = "0.3"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "encoder_benchmark"
|
|
|
|
harness = false
|