2025-06-27 02:31:23 +01:00
|
|
|
[package]
|
|
|
|
name = "nu_plugin_clipboard"
|
|
|
|
license = "MIT"
|
|
|
|
authors = [
|
|
|
|
"Motalleb Fallahnezhad <fmotalleb@gmail.com>",
|
|
|
|
]
|
|
|
|
keywords = [
|
|
|
|
"nushell",
|
|
|
|
"clipboard",
|
|
|
|
"plugin",
|
|
|
|
]
|
|
|
|
homepage = "https://github.com/FMotalleb/nu_plugin_clipboard"
|
|
|
|
repository = "https://github.com/FMotalleb/nu_plugin_clipboard"
|
|
|
|
description = "A nushell plugin to copy text into clipboard or get text from it."
|
2025-09-20 15:18:58 +01:00
|
|
|
version = "0.107.0"
|
2025-06-27 02:31:23 +01:00
|
|
|
edition = "2024"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[dependencies]
|
2025-09-20 15:18:58 +01:00
|
|
|
nu-plugin = { version = "0.107.1", path = "../nushell/crates/nu-plugin" }
|
|
|
|
nu-protocol = { version = "0.107.1", features = ["plugin"] , path = "../nushell/crates/nu-protocol" }
|
|
|
|
arboard = { version = "3.6.1", default-features = false }
|
|
|
|
nu-json = { version = "0.107.1", path = "../nushell/crates/nu-json" }
|
2025-06-27 02:31:23 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = [
|
|
|
|
]
|
|
|
|
use-wayland = [
|
|
|
|
"arboard/wayland-data-control",
|
|
|
|
]
|
|
|
|
debug = [
|
|
|
|
]
|