mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2025-12-12 16:10:07 +01:00
27 lines
579 B
TOML
27 lines
579 B
TOML
[package]
|
|
name = "copyrat"
|
|
version = "0.4.1"
|
|
authors = ["graelo <graelo@graelo.cc>"]
|
|
edition = "2021"
|
|
|
|
description = "A tmux plugin for copy-pasting within tmux panes."
|
|
repository = "https://github.com/graelo/tmux-copyrat"
|
|
keywords = ["rust", "tmux", "tmux-plugin", "tmux-copycat"]
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
thiserror = "1"
|
|
|
|
termion = "1.5"
|
|
regex = "1.5"
|
|
clap = { version = "3.1", features = ["derive", "wrap_help"]}
|
|
sequence_trie = "0.3.6"
|
|
duct = "0.13"
|
|
|
|
[[bin]]
|
|
name = "copyrat"
|
|
path = "src/bin/copyrat.rs"
|
|
|
|
[[bin]]
|
|
name = "tmux-copyrat"
|
|
path = "src/bin/tmux_copyrat.rs"
|