mirror of https://github.com/emilk/egui.git
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.
50 lines
1.4 KiB
50 lines
1.4 KiB
[package]
|
|
name = "ecolor"
|
|
version.workspace = true
|
|
authors = [
|
|
"Emil Ernerfeldt <emil.ernerfeldt@gmail.com>",
|
|
"Andreas Reich <reichandreas@gmx.de>",
|
|
]
|
|
description = "Color structs and color conversion utilities"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
homepage = "https://github.com/emilk/egui"
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository = "https://github.com/emilk/egui"
|
|
categories = ["mathematics", "encoding"]
|
|
keywords = ["gui", "color", "conversion", "gamedev", "images"]
|
|
include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[lib]
|
|
|
|
|
|
[features]
|
|
default = []
|
|
|
|
## Enable additional checks if debug assertions are enabled (debug builds).
|
|
extra_debug_asserts = []
|
|
## Always enable additional checks.
|
|
extra_asserts = []
|
|
|
|
|
|
[dependencies]
|
|
#! ### Optional dependencies
|
|
|
|
## [`bytemuck`](https://docs.rs/bytemuck) enables you to cast `ecolor` types to `&[u8]`.
|
|
bytemuck = { version = "1.7.2", optional = true, features = ["derive"] }
|
|
|
|
## [`cint`](https://docs.rs/cint) enables interoperability with other color libraries.
|
|
cint = { version = "0.3.1", optional = true }
|
|
|
|
## Enable the [`hex_color`] macro.
|
|
color-hex = { version = "0.2.0", optional = true }
|
|
|
|
## Enable this when generating docs.
|
|
document-features = { version = "0.2", optional = true }
|
|
|
|
## Allow serialization using [`serde`](https://docs.rs/serde).
|
|
serde = { version = "1", optional = true, features = ["derive"] }
|
|
|