-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
57 lines (50 loc) · 1.91 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
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "i3lockr"
description = "Distort a screenshot and run i3lock"
version = "1.3.0"
license = "MIT OR Apache-2.0"
authors = ["Owen Walpole <[email protected]>"]
repository = "https://github.com/owenthewizard/i3lockr"
readme = "README.md"
keywords = ["i3lockr", "i3lock", "i3lock-fancy", "blur", "i3lock-color" ]
categories = ["command-line-utilities", "multimedia::images"]
edition = "2021"
[badges]
is-it-maintained-issue-resolution = { repository = "owenthewizard/i3lockr" }
is-it-maintained-open-issues = { repository = "owenthewizard/i3lockr" }
maintenance = { status = "actively-developed" }
[dependencies]
blend-srgb = { version = "0.1", optional = true }
imagefmt = { version = "4", default-features = false, optional = true }
imgref = "1"
itertools = { version = "0.13", optional = true }
num_cpus = "1"
rayon = { version = "1", optional = true }
rgb = "0.8"
scrap = { git = "https://github.com/owenthewizard/scrap" }
stackblur-iter = { version = "0.2", optional = true, features = ["blend-srgb"] }
clap = { version = "4", default-features = true, features = ["std", "derive", "help", "usage", "error-context", "wrap_help"] }
xcb = { version = "1", features = ["randr", "shm"] }
getargs = "0.5"
[build-dependencies]
clap = { version = "4", default-features = true, features = ["std", "derive", "cargo"] }
clap_complete = "4"
[features]
blur = ["dep:stackblur-iter"]
brightness = []
color = ["clap/color"]
default = ["blur", "brightness", "color", "jpeg", "png", "scale", "suggestions", "threads"]
jpeg = ["imagefmt/jpeg", "dep:blend-srgb"]
png = ["imagefmt/png", "dep:blend-srgb"]
scale = ["dep:itertools"]
suggestions = ["clap/suggestions"]
threads = ["dep:rayon", "stackblur-iter?/rayon"]
verbose = []
[profile.release]
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
[package.metadata.cargo-all-features]
skip_feature_sets = [["png", "jpeg"]]
denylist = ["color", "suggestions", "imagefmt", "verbose"]