tmux-copyrat/Cargo.toml

25 lines
573 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"
2021-04-09 09:42:50 +02:00
version = "0.4.1"
authors = ["graelo <graelo@graelo.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"
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"