1 | [package] |
2 | name = "zune-core" |
3 | version = "0.4.12" |
4 | edition = "2021" |
5 | description = "Core utilities for image processing in the zune family of crates" |
6 | exclude = ["tests/" ] |
7 | homepage = "https://github.com/etemesi254/zune-image/tree/dev/zune-core" |
8 | keywords = ["image" ] |
9 | categories = ["multimedia::images" , "multimedia::encoding" ] |
10 | license = "MIT OR Apache-2.0 OR Zlib" |
11 | |
12 | [features] |
13 | # When present, we can use std facilities to detect |
14 | # if a specific feature exists |
15 | # Not enabled by default. Other zune crates can enable dep:zune-core/std by default. |
16 | # But if we enable it here, they can't disable it anymore. |
17 | # See: https://github.com/rust-lang/cargo/issues/8366 |
18 | std = [] |
19 | |
20 | [dependencies] |
21 | log = { version = "0.4.17" , optional = true } |
22 | serde = { version = "1.0.52" , optional = true } |
23 | |