-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
45 lines (42 loc) · 1 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
[package]
name = "super_clipboard"
authors = ["SergioRibera"]
description = "GUI Application for manage history clipboard; Cli options overwrite settings"
homepage = "https://github.com/SergioRibera/super_clipboard"
license = "MIT"
version = "2.1.0"
edition = "2021"
[profile.release]
lto = true
strip = true
opt-level = "z"
[[bin]]
name = "superclipboard"
path = "src/main.rs"
[dependencies]
open = "5.0.0"
log = "0.4.20"
rlsf = "0.2.1"
dark-light = "1.0.0"
abomonation = "0.7.3"
env_logger = "0.10.0"
iced_native = "0.10.3"
device_query = "1.1.3"
display-info = "0.4.3"
iced_tiny_skia = "0.1.0"
arboard = { version = "3.2", features = ["wayland-data-control"] }
clap = { version = "4.4.7", features = ["derive"] }
iced = { version = "0.10.0", default-features = false, features = [
"image",
"svg",
"tokio",
] }
chrono = { version = "0.4.31", default-features = false, features = [
"clock",
"std",
"serde",
] }
abomonation_derive = "0.5.0"
app_dirs2 = "2.5.5"
global-hotkey = "0.4.0"
rand = "0.8.5"