-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 800 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 800 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
25
26
[package]
name = "random_color"
version = "1.1.0"
edition = "2021"
authors = ["Lucas Maximiliano Marino <lucasmmarino@gmail.com>"]
license = "MIT"
readme = "README.md"
keywords = ["random", "color", "rgb", "rgba", "hsl"]
repository = "https://github.com/elementh/random_color.git"
homepage = "https://github.com/elementh/random_color"
description = "Rust crate for generating random attractive colors"
[features]
rgb_support = ["dep:rgb"]
palette_support = ["dep:palette"]
ecolor_support = ["dep:ecolor"]
[dependencies]
rand = { version = "0.9", features = ["small_rng"] }
rgb = { version = "0.8.50", optional = true }
palette = { version = "0.7.6", optional = true }
ecolor = { version = "0.31", optional = true }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]