[package]
edition = "2021"
rust-version = "1.74"
name = "sasso"
version = "0.2.0"
build = false
exclude = [
"/bench",
"/spec",
"/docs",
"/.github",
"/wasm",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure-Rust SCSS to CSS compiler (a dart-sass alternative). Zero dependencies, wasm-friendly, embeddable as a library and usable as a CLI."
documentation = "https://docs.rs/sasso"
readme = "README.md"
keywords = [
"sass",
"scss",
"css",
"compiler",
"wasm",
]
categories = [
"compilers",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/momiji-rs/sasso"
[features]
default = []
[lib]
name = "sasso"
path = "src/lib.rs"
[[bin]]
name = "sasso"
path = "src/main.rs"
[[example]]
name = "arena_concurrency"
path = "examples/arena_concurrency.rs"
[[example]]
name = "compile"
path = "examples/compile.rs"
[[test]]
name = "arena_threads"
path = "tests/arena_threads.rs"
[[test]]
name = "diagnostics"
path = "tests/diagnostics.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[dependencies]
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[profile.dist]
lto = "thin"
inherits = "release"
[profile.release]
lto = "thin"
codegen-units = 1