[package]
edition = "2021"
name = "copyrat"
version = "0.8.2"
authors = ["graelo <graelo@graelo.cc>"]
build = false
exclude = ["/.github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tmux plugin for copy-pasting within tmux panes."
homepage = "https://github.com/graelo/tmux-copyrat"
documentation = "https://docs.rs/tmux-copyrat"
readme = "README.md"
keywords = [
"rust",
"tmux",
"tmux-copycat",
"tmux-plugin",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/graelo/tmux-copyrat"
[lib]
name = "copyrat"
path = "src/lib.rs"
[[bin]]
name = "copyrat"
path = "src/bin/copyrat.rs"
[[bin]]
name = "tmux-copyrat"
path = "src/bin/tmux_copyrat.rs"
[dependencies.clap]
version = "4.0"
features = [
"derive",
"wrap_help",
]
[dependencies.duct]
version = "1"
[dependencies.log]
version = "0.4"
[dependencies.regex]
version = "1.6"
[dependencies.sequence_trie]
version = "0.3.6"
[dependencies.termion]
version = "4"
[dependencies.thiserror]
version = "2"
[dependencies.unicode-width]
version = "0.2"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"