-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
41 lines (34 loc) · 867 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
37
38
39
40
41
[package]
name = "jxl-winthumb"
version = "0.2.11"
authors = ["Kagami Sascha Rosylight <[email protected]>"]
edition = "2018"
[lib]
crate-type = ["rlib", "cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
simple-logging = "2.0.2"
log = "0.4.22"
windows-core = "0.58.0"
winreg = "0.52.0"
jxl-oxide = "0.10.2"
[dependencies.windows]
version = "0.58.0"
features = [
"implement",
"Win32_Graphics_Imaging",
"Win32_Foundation",
"Win32_System_Com",
"Win32_System_Com_StructuredStorage",
"Win32_System_LibraryLoader",
"Win32_System_SystemServices",
"Win32_UI_Shell",
"Win32_UI_Shell_PropertiesSystem",
]
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
name = "benchmark"
harness = false
[build-dependencies]
winresource = "0.1.19"