forked from cdown/jpgfromraw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (59 loc) · 1.44 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (59 loc) · 1.44 KB
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
63
64
65
66
67
[package]
name = "jpgfromraw-lib"
edition = "2024"
version = "0.7.2"
authors = ["Chris Down <chris@chrisdown.name>"]
description = "Library fork of jpgfromraw: embedded JPEG extraction from RAW files"
repository = "https://github.com/ioma8/jpgfromrawlib"
readme = "README.md"
keywords = ["raw", "camera", "extract", "jpeg", "jpg"]
categories = ["command-line-utilities"]
license = "MIT"
rust-version = "1.96"
exclude = [
"bench",
"bench_transfers",
"docs/",
"perf_artifacts/",
"test_images/",
"wip/",
]
[lib]
path = "src/lib.rs"
[features]
default = ["generic-raster"]
generic-raster = ["image/avif", "image/avif-native", "image/dds", "image/exr"]
[dependencies]
anyhow = "1.0.102"
byteorder = "1.5.0"
image = { version = "0.25.10", default-features = false, features = [
"bmp",
"gif",
"hdr",
"ico",
"jpeg",
"png",
"pnm",
"qoi",
"tga",
"tiff",
"webp",
] }
indicatif = "0.18.4"
memchr = "2.8.1"
memmap2 = "0.9.10"
tempfile = "3.23.0"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.62.2", features = ["Win32_Storage_FileSystem", "Win32_System_Memory", "Win32_System_Threading"] }
[dependencies.clap]
version = "4.6.1"
features = ["std", "derive", "help"]
default-features = false
[dependencies.tokio]
version = "1.52.3"
features = ["fs", "io-util", "macros", "rt-multi-thread", "sync"]
default-features = false
[build-dependencies]
cc = "1.2.63"
[dev-dependencies]
trybuild = "1.0.114"