mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 00:13:21 +01:00
648486400c
# Description So sorry to do this during the pre-release freeze, but my plugin crate split PR broke local socket mode, because `nu-plugin-protocol` didn't have the compile feature to advertise the `LocalSocket` protocol feature. This is a very simple, configuration-only bugfix that I think really needs to be merged before the release, or else local socket mode won't work at all. # Tests + Formatting There's an oversight in my testing that caused this to not be caught: the engine really did have the feature, but it just wasn't advertising it, so for `stress_internals` it was still able to use it successfully. Post-release I'll try to make sure this is properly handled somehow.
29 lines
853 B
TOML
29 lines
853 B
TOML
[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"
|
|
version = "0.92.3"
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
nu-protocol = { path = "../nu-protocol", version = "0.92.3" }
|
|
nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.92.3", default-features = false }
|
|
|
|
rmp-serde = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
log = { workspace = true }
|
|
interprocess = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = ["local-socket"]
|
|
local-socket = ["interprocess", "nu-plugin-protocol/local-socket"]
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows = { workspace = true }
|