[package]
edition = "2021"
rust-version = "1.88.0"
name = "pinkie"
version = "0.2.0"
authors = ["Anton Bulakh <him@necauq.ua>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "(Almost) compile-time scoped CSS-in-Rust"
homepage = "https://github.com/necauqua/pinkie"
readme = "readme.md"
keywords = [
"scoped",
"css",
"macros",
"web",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/necauqua/pinkie"
[features]
default = [
"validation",
"location",
]
dynamic = [
"location",
"dep:pinkie-parser",
"dep:log",
]
location = ["pinkie-macros/location"]
validation = ["pinkie-macros/validation"]
[lib]
name = "pinkie"
path = "src/lib.rs"
[[test]]
name = "collect"
path = "tests/collect.rs"
[[test]]
name = "collect_other_file"
path = "tests/collect_other_file.rs"
[[test]]
name = "dedup"
path = "tests/dedup.rs"
[[test]]
name = "dynamic"
path = "tests/dynamic.rs"
[[test]]
name = "whitespaces"
path = "tests/whitespaces.rs"
[dependencies.inventory]
version = "0.3"
[dependencies.log]
version = "0.4"
optional = true
[dependencies.pinkie-macros]
version = "0.2.0"
[dependencies.pinkie-parser]
version = "0.2.0"
optional = true
[dev-dependencies.insta]
version = "1.42"
[dev-dependencies.log]
version = "0.4"
[dev-dependencies.maud]
version = "0.27"