33 lines
850 B
TOML
33 lines
850 B
TOML
[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."
|
|
version = "0.105.2"
|
|
edition = "2024"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
nu-plugin = { version = "0.105.2", path = "../nushell/crates/nu-plugin" }
|
|
nu-protocol = { version = "0.105.2", features = ["plugin"] , path = "../nushell/crates/nu-protocol" }
|
|
arboard = { version = "3.5.0", default-features = false }
|
|
nu-json = { path = "../nushell/crates/nu-json", version = "0.105.2" }
|
|
|
|
[features]
|
|
default = [
|
|
]
|
|
use-wayland = [
|
|
"arboard/wayland-data-control",
|
|
]
|
|
debug = [
|
|
]
|