-
Notifications
You must be signed in to change notification settings - Fork 27
/
Cargo.toml
43 lines (38 loc) · 1.11 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
[package]
name = "eyedropper"
version = "2.0.1"
authors = ["FineFindus <[email protected]>"]
edition = "2021"
description = "Pick and format colors"
readme = "README.md"
license-file = "LICENSE"
homepage = "https://apps.gnome.org/Eyedropper/"
repository = "https://github.com/finefindus/eyedropper"
rust-version = "1.70"
#override package level optimization, to always be maximum
[profile.release.package."*"]
opt-level = 3
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[build-dependencies]
phf = { version = "0.11.2", default-features = false }
phf_codegen = "0.11.1"
[dependencies]
log = "0.4"
pretty_env_logger = "0.5"
gettext-rs = { version = "0.7", features = ["gettext-system"] }
once_cell = "1.18.0"
gtk = { version = "0.9", package = "gtk4", features = ["gnome_44"] }
glib = "0.20"
adw = { package = "libadwaita", version = "0.7", features = ["v1_6"] }
ashpd = { version = "0.9", features = ["gtk4"] }
rand = "0.8"
bytes = "1.4"
search-provider = { version = "0.10", features = ["gdk-pixbuf"] }
nom = "7.1"
phf = { version = "0.11.2", features = ["macros"] }
zbus = "4.4"
palette = "0.7.2"