grass/Cargo.toml

53 lines
1.4 KiB
TOML
Raw Normal View History

[package]
name = "grass"
2020-04-21 05:25:24 -04:00
version = "0.7.0"
2020-03-16 16:45:13 -04:00
description = "SASS compiler"
2020-01-18 18:59:43 -05:00
readme = "README.md"
license = "MIT"
2020-01-18 18:59:43 -05:00
categories = ["command-line-utilities", "web-programming"]
2020-03-16 16:45:13 -04:00
keywords = ["scss", "sass", "css", "web"]
2020-01-18 18:59:43 -05:00
repository = "https://github.com/connorskees/grass"
authors = ["ConnorSkees <39542938+ConnorSkees@users.noreply.github.com>"]
edition = "2018"
2020-03-01 17:16:58 -05:00
exclude = ["*.scss", "sass-spec", "tests", "Cargo.lock"]
2020-04-24 18:08:20 -04:00
default-run = "grass"
[[bin]]
name = "grass"
path = "src/main.rs"
required-features = ["commandline"]
[lib]
name = "grass"
path = "src/lib.rs"
2020-04-24 18:08:20 -04:00
crate-type = ["cdylib", "rlib"]
[dependencies]
clap = { version = "2.33.0", optional = true }
num-rational = "0.2.3"
num-bigint = "0.2.6"
num-traits = "0.2.11"
once_cell = "1.3.1"
2020-04-05 13:42:18 -04:00
rand = { version = "0.7.3", optional = true }
2020-04-17 13:17:39 -04:00
codemap = "0.1.3"
2020-04-20 04:05:57 -04:00
peekmore = "0.4.0"
2020-04-24 18:08:20 -04:00
wasm-bindgen = { version = "0.2.60", optional = true }
bimap = "0.4.0"
[features]
2020-04-05 13:42:18 -04:00
default = ["commandline", "random"]
# Option (enabled by default): build a binary using clap
commandline = ["clap"]
2020-04-05 13:42:18 -04:00
# Option: enable nightly-only features (for right now, only the `track_caller` attribute)
nightly = []
2020-04-05 18:20:58 -04:00
# Option (enabled by default): enable the builtin functions `random([$limit])` and `unique-id()`
2020-04-05 13:42:18 -04:00
random = ["rand"]
2020-04-24 18:08:20 -04:00
# Option: compile to web assembly
wasm = ["wasm-bindgen"]
2020-05-01 15:43:43 -04:00
# Option: enable features that assist in profiling (e.g. inline(never))
profiling = []
2020-01-18 14:56:18 -05:00
[dev-dependencies]
tempfile = "3"
paste = "0.1"