forked from microsoft/lepton_jpeg_rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (40 loc) · 989 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
42
43
44
45
46
47
48
49
[package]
name = "lepton_jpeg"
version = "0.3.0"
edition = "2021"
authors = ["Kristof Roomp <[email protected]>"]
# requires scoped threads
rust-version = "1.65"
description = "Rust port of the Lepton JPEG compression library"
readme = "README.md"
repository = "https://github.com/microsoft/lepton_jpeg_rust"
license = "Apache-2.0"
exclude = [
"images/*",
"tests/*",
]
categories = ["multimedia::images", "multimedia::encoding"]
[profile.release]
debug=true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
compression_stats = []
[dependencies]
byteorder = "1.4.3"
flate2 = "1.0.25"
default-boxed = "0.2.0"
anyhow = { version="1.0.68", features = ["backtrace"]}
wide = "0.7.5"
log = "0.4.17"
simple_logger ="4.0.0"
cpu-time = "1.0.0"
atty = "0.2.14"
[dev-dependencies]
rstest = "0.16.0"
rand = "0.8.5"
[[bin]]
name = "lepton_jpeg_util"
path = "src/main.rs"
[lib]
crate-type = ["cdylib","lib"]