-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 994 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
32
33
34
35
36
37
38
39
[package]
name = "csync"
version = "0.4.0"
edition = "2021"
build = "build.rs"
license = "MIT"
authors = ["fioncat"]
categories = ["command-line-utilities"]
readme = "README.md"
repository = "https://github.com/fioncat/csync"
description = "Share your clipboard between different devices"
[dependencies]
aes-gcm = "0.10.3"
anyhow = "1.0.91"
bincode = "1.3.3"
blake3 = "1.5.4"
bytes = "1.8.0"
clap = { version = "4.5.20", features = ["derive"] }
dirs = "5.0.1"
fern = { version = "0.7.0", features = ["colored"] }
humantime = "2.1.0"
log = "0.4.22"
pbkdf2 = "0.12.2"
serde = { version = "1.0.214", features = ["derive"] }
sha2 = "0.10.8"
thiserror = "1.0.65"
tokio = { version = "1.41.0", features = ["full"] }
toml = "0.8.19"
uuid = { version = "1.11.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
[build-dependencies]
simple-error = "0.3.0"
vergen = { version = "9.0.1", features = ["build", "rustc", "cargo", "si"] }
[profile.release]
lto = true
strip = true
incremental = false