[package]
edition = "2021"
rust-version = "1.85"
name = "ggsci"
version = "0.6.1"
build = false
include = [
"Cargo.toml",
"README.md",
"src/**/*.rs",
"tests/**/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Scientific and sci-fi color palettes from ggsci for Rust"
homepage = "https://github.com/nanxstats/ggsci-rs"
readme = "README.md"
keywords = [
"colors",
"palettes",
"ggplot2",
"plotting",
"visualization",
]
license = "MIT"
repository = "https://github.com/nanxstats/ggsci-rs"
[lib]
name = "ggsci"
path = "src/lib.rs"
[[test]]
name = "continuous"
path = "tests/continuous.rs"
[[test]]
name = "gephi"
path = "tests/gephi.rs"
[[test]]
name = "iterm"
path = "tests/iterm.rs"
[dependencies.rand]
version = "0.9.5"
[dependencies.rand_chacha]
version = "0.9.0"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"