22 lines
755 B
TOML
22 lines
755 B
TOML
[package]
|
|
name = "makepad-zune-core"
|
|
version = "0.5.1"
|
|
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", optional = true }
|
|
serde = { version = "1.0", optional = true }
|