-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 843 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 843 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 = "jpeg-encoder"
version = "0.7.0"
authors = ["Volker Ströbel <[email protected]>"]
edition = "2024"
license = "(MIT OR Apache-2.0) AND IJG"
description = "JPEG encoder"
categories = ["multimedia::images"]
keywords = ["jpg", "jpeg", "encoder", "image"]
readme = "README.md"
repository = "https://github.com/vstroebel/jpeg-encoder"
rust-version = "1.87"
[features]
default = ["std"]
simd = ["std"]
std = []
use_wide = ["wide", "bytemuck"]
# DO NOT USE THIS IN PRODUCTION. Expose several internal functions for benchmark purposes.
benchmark = []
[dependencies]
wide = { version = "1.0", optional = true, default-features = false }
bytemuck = { version = "1.24", optional = true, default-features = false }
[dev-dependencies]
jpeg-decoder = { version = "0.3", default-features = false }
[profile.dev]
opt-level = 1