[package]
edition = "2021"
name = "procss"
version = "0.1.18"
authors = ["Andrew Stein <andrew@prospective.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple CSS parsing and transformation framework."
readme = "README.md"
keywords = [
"compiler",
"web",
"css",
]
license = "Apache-2.0"
repository = "https://github.com/ProspectiveCo/procss"
[features]
iotest = []
[lib]
name = "procss"
path = "src/lib.rs"
bench = false
[[bin]]
name = "procss"
path = "src/main.rs"
bench = false
[[test]]
name = "apply_import"
path = "tests/apply_import.rs"
[[test]]
name = "apply_mixin"
path = "tests/apply_mixin.rs"
[[test]]
name = "apply_var"
path = "tests/apply_var.rs"
[[test]]
name = "at_ruleset"
path = "tests/at_ruleset.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "dedupe"
path = "tests/dedupe.rs"
[[test]]
name = "filter_refs"
path = "tests/filter_refs.rs"
[[test]]
name = "inline_url"
path = "tests/inline_url.rs"
[[test]]
name = "minify"
path = "tests/minify.rs"
[[test]]
name = "nested"
path = "tests/nested.rs"
[[test]]
name = "node_js"
path = "tests/node_js.rs"
[[bench]]
name = "basic"
path = "benches/basic.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = ">=0.22.1"
[dependencies.mockall]
version = "0"
[dependencies.nom]
version = "7"
[dev-dependencies.criterion]
version = "0.4"
features = ["html_reports"]
[target.'cfg(target_arch = "wasm32")'.dependencies.console_error_panic_hook]
version = "0.1.7"
[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
version = "0.3.85"
[target.'cfg(target_arch = "wasm32")'.dependencies.serde-wasm-bindgen]
version = "0.6.5"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2.108"
features = ["serde-serialize"]
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3.85"
features = ["console"]
[profile.release]
lto = true
codegen-units = 1