-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
45 lines (40 loc) · 1.06 KB
/
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
40
41
42
43
44
45
[workspace]
members = ["util", "dev", "plugin", "common"]
[package]
name = "rofi-bw"
version = "1.1.3"
edition = "2021"
publish = false
license = "MIT"
[dependencies]
rofi-bw-common = { path = "common" }
rofi-bw-util = { path = "util" }
# RustCrypto
aead = { version = "0.5.2", features = ["std"] }
argon2 = { version = "0.5.3", features = ["std"] }
crypto-common = "0.1.6"
chacha20poly1305 = "0.10.1"
hmac = "0.12.1"
pbkdf2 = "0.12.2"
sha2 = "0.10.2"
anyhow = "1.0.58"
arboard = { version = "2.1.1", default-features = false }
base64 = "0.22.1"
bincode = "2.0.0-rc.2"
bitflags = "1.3.2"
clap = { version = "3.2.14", features = ["derive"] }
directories = "4.0.1"
itoa = "1.0.2"
libc = "0.2.126"
notify-rust = { version = "4.5.8", default-features = false, features = ["d"] }
rand = "0.8.5"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.82"
toml = "0.8.12"
ureq = { version = "2.4.0", features = ["tls", "json"] }
uuid = { version = "1.1.2", features = ["v4", "serde"] }
zeroize = "1.5.6"
[profile.release]
lto = "fat"
codegen-units = 1
strip = true