tangible 0.0.1

Design tokens as data — colors, type, space, shadows, gradients, and contrast — rendered to CSS.
Documentation
# 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 = "2024"
rust-version = "1.85"
name = "tangible"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Design tokens as data — colors, type, space, shadows, gradients, and contrast — rendered to CSS."
documentation = "https://docs.rs/tangible"
readme = "README.md"
keywords = [
    "colors",
    "css",
    "design-system",
    "design-tokens",
    "gradient",
]
categories = [
    "command-line-utilities",
    "template-engine",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/esmevane/tangible"

[features]
cli = [
    "dep:anyhow",
    "dep:clap",
]
default = ["cli"]

[lib]
name = "tangible"
path = "src/lib.rs"

[[bin]]
name = "tangible"
path = "src/bin/tangible.rs"
required-features = ["cli"]

[[example]]
name = "from_json"
path = "examples/from_json.rs"

[[example]]
name = "programmatic"
path = "examples/programmatic.rs"

[dependencies.anyhow]
version = "1.0"
optional = true

[dependencies.clap]
version = "4.6"
features = ["derive"]
optional = true

[dependencies.colorgrad]
version = "0.8"
features = ["lab"]

[dependencies.csscolorparser]
version = "0.8"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"