-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (53 loc) · 1.74 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
58
59
60
61
62
[package]
name = "wallpapers"
version = "0.1.0"
edition = "2021"
description = "Awused's personal image and manga viewer"
readme = "README.md"
license = "MIT"
keywords = ["wallpapers", "waifu2x"]
homepage = "https://github.com/awused/wallpapers"
repository = "https://github.com/awused/wallpapers"
links = "X11, Xrandr"
[dependencies]
awconf = { git = "https://github.com/awused/awconf" }
aw-shuffle = { git = "https://github.com/awused/aw-shuffle", features = [ "rocks" ] }
aw-upscale = { git = "https://github.com/awused/aw-upscale" }
clap = { version = "4.5.4", features = ["derive"] }
crossbeam-utils = "0.8.20"
dialoguer = { version = "0.11.0", default-features = false, features = [ "history" ] }
image = { version = "0.25.1", default-features = false, features = [ "jpeg", "png", "bmp" ] }
lru = { version = "0.12.3", default-features = false }
num_cpus = "1.16.0"
ocl = { version = "0.19.7", optional = true }
once_cell = "1.19.0"
rayon = "1.10.0"
regex = "1.10.4"
serde = { version = "1.0.203", default-features = false, features = [ "derive" ] }
signal-hook = { version = "0.3.17", default-features = false }
tempfile = "3.10.1"
tokio = { version = "1.38.0", features = [ "macros", "process", "rt", "sync", "time" ] }
toml = "0.8.14"
walkdir = "2.5.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2.155"
futures = "0.3.30"
tikv-jemallocator = { version = "0.5.4", features = [ "background_threads" ] }
x11 = "2.21.0"
[target.'cfg(windows)'.dependencies]
widestring = "1.1.0"
[target.'cfg(windows)'.dependencies.windows]
version = "0.56.0"
features = [
"Win32_Foundation",
"Win32_System_Com",
"Win32_UI_Shell"
]
[features]
default = ["opencl"]
windows-quiet = []
opencl = ["dep:ocl"]
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
overflow-checks = false