2020-06-02 20:03:16 +02:00
|
|
|
[package]
|
2020-05-24 21:02:11 +02:00
|
|
|
name = "copyrat"
|
2021-04-09 09:42:50 +02:00
|
|
|
version = "0.4.1"
|
|
|
|
|
authors = ["graelo <graelo@graelo.cc>"]
|
2021-10-24 09:33:55 +02:00
|
|
|
edition = "2021"
|
2020-05-24 21:02:11 +02:00
|
|
|
description = "This is tmux-copycat on Rust steroids."
|
2021-03-13 11:37:20 +01:00
|
|
|
repository = "https://github.com/graelo/tmux-copyrat"
|
2020-05-24 21:02:11 +02:00
|
|
|
keywords = ["rust", "tmux", "tmux-plugin", "tmux-copycat"]
|
2020-06-02 20:03:16 +02:00
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2021-10-24 09:33:55 +02:00
|
|
|
thiserror = "1"
|
|
|
|
|
|
2020-06-02 20:03:16 +02:00
|
|
|
termion = "1.5"
|
2021-10-24 09:33:55 +02:00
|
|
|
regex = "1.5"
|
|
|
|
|
clap = { version = "3.0.0-beta.5", features = ["wrap_help"]}
|
2020-05-31 22:45:36 +02:00
|
|
|
sequence_trie = "0.3.6"
|
2021-03-17 07:55:24 +01:00
|
|
|
duct = "0.13"
|
2020-06-02 20:03:16 +02:00
|
|
|
|
|
|
|
|
[[bin]]
|
2020-05-24 21:02:11 +02:00
|
|
|
name = "copyrat"
|
2021-03-17 22:13:13 +01:00
|
|
|
path = "src/bin/copyrat.rs"
|
2020-06-02 20:03:16 +02:00
|
|
|
|
|
|
|
|
[[bin]]
|
2020-05-24 21:02:11 +02:00
|
|
|
name = "tmux-copyrat"
|
2021-03-17 22:13:13 +01:00
|
|
|
path = "src/bin/tmux_copyrat.rs"
|