You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
757 B
22 lines
757 B
[package] |
|
name = "zune-core" |
|
version = "0.5.0-rc1" |
|
edition = "2021" |
|
description = "Core utilities for image processing in the zune family of crates" |
|
exclude = ["tests/"] |
|
repository = "https://github.com/etemesi254/zune-image" |
|
keywords = ["image"] |
|
categories = ["multimedia::images", "multimedia::encoding"] |
|
license = "MIT OR Apache-2.0 OR Zlib" |
|
|
|
[features] |
|
# When present, we can use std facilities to detect |
|
# if a specific feature exists |
|
# Not enabled by default. Other zune crates can enable dep:zune-core/std by default. |
|
# But if we enable it here, they can't disable it anymore. |
|
# See: https://github.com/rust-lang/cargo/issues/8366 |
|
std = [] |
|
|
|
[dependencies] |
|
log = { version = "0.4.17", optional = true } |
|
serde = { version = "1.0.52", optional = true }
|
|
|