2020-06-02 20:03:16 +02:00
|
|
|
[package]
|
2020-05-24 21:02:11 +02:00
|
|
|
name = "copyrat"
|
|
|
|
|
version = "0.1.0"
|
2020-06-04 09:48:51 +02:00
|
|
|
authors = ["u0xy <u0xy@u0xy.cc>"]
|
2020-06-02 20:03:16 +02:00
|
|
|
edition = "2018"
|
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]
|
|
|
|
|
termion = "1.5"
|
2021-03-13 11:37:20 +01:00
|
|
|
regex = "1.4"
|
|
|
|
|
clap = { version = "3.0.0-beta.2", features = ["suggestions", "color", "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"
|