2024-04-27 19:08:12 +02:00
|
|
|
[package]
|
|
|
|
authors = ["The Nushell Project Developers"]
|
|
|
|
description = "Protocol type definitions for Nushell plugins"
|
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin-protocol"
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
name = "nu-plugin-protocol"
|
2024-07-30 02:20:55 +02:00
|
|
|
version = "0.96.2"
|
2024-04-27 19:08:12 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-07-30 02:20:55 +02:00
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.96.2", features = ["plugin"] }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.96.2" }
|
2024-04-27 19:08:12 +02:00
|
|
|
|
|
|
|
bincode = "1.3"
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
semver = "1.0"
|
|
|
|
typetag = "0.2"
|
2024-04-29 09:02:56 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["local-socket"]
|
2024-06-25 20:29:47 +02:00
|
|
|
local-socket = []
|