# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "colorgrad" version = "0.7.0" authors = ["Nor Khasyatillah "] exclude = [ ".github/*", ".gitignore", "docs/*", "example_output/*", ] description = "Color scales library for data visualization, charts, games, generative art and others." documentation = "https://docs.rs/colorgrad/" readme = "README.md" keywords = [ "color", "colormap", "color-scales", "visualization", "gradient", ] categories = [ "graphics", "visualization", ] license = "MIT OR Apache-2.0" repository = "https://github.com/mazznoer/colorgrad-rs" [package.metadata.docs.rs] features = [ "named-colors", "preset", "ggr", "lab", ] [[example]] name = "gradients" required-features = [ "lab", "preset", "ggr", "named-colors", ] [[bench]] name = "custom_gradient" harness = false required-features = ["lab"] [[bench]] name = "preset" harness = false required-features = ["preset"] [[bench]] name = "gimp" harness = false required-features = ["ggr"] [dependencies.csscolorparser] version = "0.7.0" default-features = false [dev-dependencies.criterion] version = "0.5.1" features = ["html_reports"] [dev-dependencies.image] version = "0.25.2" features = ["png"] default-features = false [features] default = [ "named-colors", "preset", ] ggr = [] lab = ["csscolorparser/lab"] named-colors = ["csscolorparser/named-colors"] preset = []