-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
39 lines (34 loc) · 1.27 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
[package]
name = "resize"
version = "0.8.8"
description = "Simple image resampling library in pure Rust."
authors = ["Kornel <[email protected]>", "Kagami Hiiragi <[email protected]>"]
categories = ["graphics", "multimedia::images", "no-std"]
keywords = ["resize", "scale", "resample", "image", "graphics"]
documentation = "https://docs.rs/resize"
homepage = "https://github.com/PistonDevelopers/resize"
repository = "https://github.com/PistonDevelopers/resize.git"
license = "MIT"
readme = "README.md"
include = ["Cargo.toml", "README.md", "LICENSE", "src/*.rs"]
edition = "2021"
rust-version = "1.63"
[features]
default = ["std", "rayon"]
# If you disable `std`, you must also enable `no_std`
std = []
# Takes effect *only* if `std` is disabled. Use `default-features=false`.
no_std = ["dep:libm", "dep:hashbrown"]
rayon = ["dep:rayon", "std"]
[dev-dependencies]
png = "0.17.14"
[dependencies]
rgb = { version = "0.8.50", default-features = false }
libm = { version = "0.2.11", optional = true }
hashbrown = { version = "0.15", optional = true }
rayon = { version = "1.10.0", optional = true }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
[badges]
maintenance = { status = "actively-developed" }