tmux-copyrat/Cargo.toml

23 lines
568 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"
authors = ["Ferran Basora <fcsonline@gmail.com>", "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-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"