[package]
edition = "2024"
rust-version = "1.92.0"
name = "nu-plugin-core"
version = "0.112.1"
authors = ["The Nushell Project Developers"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared internal functionality to support Nushell plugins"
readme = "README.md"
license = "MIT"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin-core"
[features]
default = ["local-socket"]
local-socket = [
"interprocess",
"nu-plugin-protocol/local-socket",
]
[lib]
name = "nu_plugin_core"
path = "src/lib.rs"
bench = false
[dependencies.interprocess]
version = "2.4.0"
optional = true
[dependencies.log]
version = "0.4"
[dependencies.nu-plugin-protocol]
version = "0.112.1"
default-features = false
[dependencies.nu-protocol]
version = "0.112.1"
[dependencies.nu-utils]
version = "0.112.1"
[dependencies.rmp-serde]
version = "1.3.1"
[dependencies.serde]
version = "1.0"
[dependencies.serde_json]
version = "1.0.149"
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.62.2"
[lints.clippy]
format_push_string = "warn"
needless_raw_strings = "warn"
result_large_err = "allow"
unchecked_time_subtraction = "warn"
unwrap_used = "deny"
used_underscore_binding = "warn"