tmux-copyrat/Cargo.toml

24 lines
553 B
TOML
Raw Normal View History

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."
2020-06-02 20:03:16 +02:00
repository = "https://github.com/fcsonline/tmux-thumbs"
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"
regex = "1.3.1"
2020-05-24 21:02:11 +02:00
clap = { version = "3.0.0-beta.1", features = ["suggestions", "color", "wrap_help", "term_size"]}
2020-05-31 22:45:36 +02:00
sequence_trie = "0.3.6"
2020-06-02 20:03:16 +02:00
[[bin]]
2020-05-24 21:02:11 +02:00
name = "copyrat"
2020-06-02 20:03:16 +02:00
path = "src/main.rs"
[[bin]]
2020-05-24 21:02:11 +02:00
name = "tmux-copyrat"
2020-05-27 10:04:42 +02:00
path = "src/bridge.rs"