91 lines
2.2 KiB
TOML
91 lines
2.2 KiB
TOML
[package]
|
|
name = "grass"
|
|
version = "0.11.0"
|
|
description = "A near-feature-complete Sass compiler written purely in Rust"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
categories = ["command-line-utilities", "web-programming"]
|
|
keywords = ["scss", "sass", "css", "web"]
|
|
repository = "https://github.com/connorskees/grass"
|
|
authors = ["ConnorSkees <39542938+ConnorSkees@users.noreply.github.com>"]
|
|
edition = "2018"
|
|
include = ["src", "Cargo.toml", "README.md", "CHANGELOG.md", "Cargo.lock", "LICENSE"]
|
|
default-run = "grass"
|
|
|
|
[[bin]]
|
|
name = "grass"
|
|
path = "src/main.rs"
|
|
required-features = ["commandline"]
|
|
|
|
[lib]
|
|
name = "grass"
|
|
path = "src/lib.rs"
|
|
# crate-type = ["cdylib", "rlib"]
|
|
bench = false
|
|
|
|
[[bench]]
|
|
path = "benches/variables.rs"
|
|
name = "variables"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
path = "benches/colors.rs"
|
|
name = "colors"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
path = "benches/numbers.rs"
|
|
name = "numbers"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
path = "benches/control_flow.rs"
|
|
name = "control_flow"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
path = "benches/styles.rs"
|
|
name = "styles"
|
|
harness = false
|
|
|
|
|
|
[dependencies]
|
|
clap = { version = "2.33.3", optional = true }
|
|
num-rational = "0.4"
|
|
num-bigint = "0.4"
|
|
num-traits = "0.2.14"
|
|
once_cell = "1.5.2"
|
|
rand = { version = "0.8", optional = true }
|
|
codemap = "0.1.3"
|
|
wasm-bindgen = { version = "0.2.68", optional = true }
|
|
beef = "0.5"
|
|
phf = { version = "0.9", features = ["macros"] }
|
|
# criterion is not a dev-dependency because it makes tests take too
|
|
# long to compile, and you cannot make dev-dependencies optional
|
|
criterion = { version = "0.3.3", optional = true }
|
|
indexmap = "1.6.0"
|
|
lasso = "0.5"
|
|
|
|
[features]
|
|
default = ["commandline", "random"]
|
|
# Option (enabled by default): build a binary using clap
|
|
commandline = ["clap"]
|
|
# Option: enable nightly-only features (for right now, only the `track_caller` attribute)
|
|
nightly = []
|
|
# Option (enabled by default): enable the builtin functions `random([$limit])` and `unique-id()`
|
|
random = ["rand"]
|
|
# Option: expose JavaScript-friendly WebAssembly exports
|
|
wasm-exports = ["wasm-bindgen"]
|
|
# Option: enable features that assist in profiling (e.g. inline(never))
|
|
profiling = []
|
|
# Option: enable criterion for benchmarking
|
|
bench = ["criterion"]
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.1.0"
|
|
paste = "1.0.3"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
panic = "abort"
|