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"
|
2023-10-17 19:08:20 +02:00
|
|
|
version = "0.86.0"
|
2021-10-23 22:08:54 +02:00
|
|
|
|
2023-02-12 23:22:00 +01:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-10-23 22:08:54 +02:00
|
|
|
[dependencies]
|
2023-10-17 19:08:20 +02:00
|
|
|
nu-engine = { path = "../nu-engine", version = "0.86.0" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.86.0" }
|
2023-05-18 18:37:20 +02:00
|
|
|
|
2023-05-26 17:32:48 +02:00
|
|
|
bincode = "1.3"
|
|
|
|
rmp-serde = "1.1"
|
2023-08-21 19:04:34 +02:00
|
|
|
serde = { version = "1.0" }
|
2023-08-23 22:23:27 +02:00
|
|
|
serde_json = { version = "1.0" }
|