forked from FineFindus/eyedropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 958 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
[package]
name = "eyedropper"
version = "0.7.0-beta"
authors = ["FineFindus <[email protected]>"]
edition = "2021"
description = "Pick and format colors"
readme = "README.md"
license-file = "LICENSE"
homepage = "https://github.com/finefindus/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
[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.6", package = "gtk4", features = ["gnome_44"]}
glib = "0.17"
adw = {package = "libadwaita", version = "0.4.4", features = ["v1_4"]}
ashpd = {version = "0.4", features = ["gtk4"]}
rand = "0.8"
bytes = "1.4"
search-provider = {version = "0.5", features = ["gdk-pixbuf"]}
nom = "7.1"