-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
45 lines (39 loc) · 1.09 KB
/
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
[package]
name = "qoi"
version = "0.4.1"
description = "VERY fast encoder/decoder for QOI (Quite Okay Image) format"
authors = ["Ivan Smirnov <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "MIT/Apache-2.0"
repository = "https://github.com/aldanor/qoi-rust"
homepage = "https://github.com/aldanor/qoi-rust"
documentation = "https://docs.rs/qoi"
categories = ["multimedia::images", "multimedia::encoding"]
keywords = ["qoi", "graphics", "image", "encoding"]
exclude = [
"assets/*",
]
rust-version = "1.62.0"
[features]
default = ["std"]
alloc = [] # provides access to `Vec` without enabling `std` mode
std = [] # std mode (enabled by default) - provides access to `std::io`, `Error` and `Vec`
reference = [] # follows reference encoder implementation precisely, but may be slightly slower
[dependencies]
bytemuck = "1.12"
[workspace]
members = ["libqoi", "bench"]
[dev-dependencies]
anyhow = "1.0"
png = "0.17"
walkdir = "2.3"
cfg-if = "1.0"
rand = "0.8"
libqoi = { path = "libqoi"}
[lib]
name = "qoi"
path = "src/lib.rs"
doctest = false
[profile.test]
opt-level = 3