-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (29 loc) · 882 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "copiepate"
version = "0.2.2"
edition = "2021"
description = "Send copy events over the network"
license = "MIT"
keywords = ["clipboard", "cli", "vim"]
categories = ["command-line-utilities"]
homepage = "https://github.com/dimtion/copiepate"
repository = "https://github.com/dimtion/copiepate"
documentation = "https://github.com/dimtion/copiepate"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clipboard = "0.5.0"
log = "0.4.14"
simple_logger = { version = "4.1.0", default-features = false, features = ["stderr", "colors"] }
etcetera = "0.4.0"
structopt = "0.3.21"
config = "0.13.3"
serde_derive = "1.0.126"
serde = "1.0.126"
num-traits = "0.2.14"
num-derive = "0.3.3"
chacha20poly1305 = "0.10.1"
base64 = "0.21.0"
anyhow = "1.0.56"
thiserror = "1.0.30"
rand = "0.8.5"
derive_builder = "0.12.0"