-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 873 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 873 Bytes
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
[package]
name = "jpgfromraw"
edition = "2021"
version = "0.7.0"
authors = ["Chris Down <chris@chrisdown.name>"]
description = "A very fast embedded JPEG extractor from RAW files."
repository = "https://github.com/cdown/jpgfromraw"
readme = "README.md"
keywords = ["raw", "camera", "extract", "jpeg", "jpg"]
categories = ["command-line-utilities"]
license = "MIT"
rust-version = "1.74"
[dependencies]
anyhow = "1.0.95"
byteorder = "1.5.0"
indicatif = "0.17.9"
memmap2 = "0.9.5"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.60.0", features = ["Win32_Storage_FileSystem", "Win32_System_Memory", "Win32_System_Threading"]}
[dependencies.clap]
version = "4.5.26"
features = ["std", "derive", "help"]
default-features = false
[dependencies.tokio]
version = "1.43.1"
features = ["fs", "io-util", "macros", "rt-multi-thread", "sync"]
default-features = false