forked from awxkee/pic-scale-safe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 706 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (21 loc) · 706 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
workspace = { members = ["app"] }
[package]
name = "pic-scale-safe"
version = "0.1.7"
edition = "2021"
description = "Fast and safe performance image scaling"
readme = "README.md"
keywords = ["scale", "resize", "image-resize"]
license = "BSD-3-Clause OR Apache-2.0"
authors = ["Radzivon Bartoshyk"]
documentation = "https://github.com/awxkee/pic-scale-safe"
categories = ["multimedia::images", "multimedia::video"]
homepage = "https://github.com/awxkee/pic-scale-safe"
repository = "https://github.com/awxkee/pic-scale-safe"
exclude = ["*.jpg", "/assets", "*.png", "*.sh"]
[dependencies]
num-traits = "0.2.19"
rayon = { version = "1.10.0", optional = true }
[features]
default = []
rayon = ["dep:rayon"]