2024-04-27 19:08:12 +02:00
|
|
|
[package]
|
|
|
|
authors = ["The Nushell Project Developers"]
|
|
|
|
description = "Shared internal functionality to support Nushell plugins"
|
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin-core"
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
name = "nu-plugin-core"
|
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" }
|
|
|
|
nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.96.2", default-features = false }
|
2024-04-27 19:08:12 +02:00
|
|
|
|
|
|
|
rmp-serde = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
interprocess = { workspace = true, optional = true }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["local-socket"]
|
2024-04-29 09:02:56 +02:00
|
|
|
local-socket = ["interprocess", "nu-plugin-protocol/local-socket"]
|
2024-04-27 19:08:12 +02:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2024-06-25 20:29:47 +02:00
|
|
|
windows = { workspace = true }
|