22 releases
Uses old Rust 2015
0.2.2 | May 22, 2019 |
---|---|
0.2.1 | Dec 29, 2017 |
0.2.0 | Jul 24, 2017 |
0.0.18 | Dec 20, 2015 |
0.0.9 | Mar 28, 2015 |
#13 in #scss
1,070 downloads per month
Used in 11 crates
1MB
25K
SLoC
sass-rs
This crate is a wrapper around libsass, currently tracking v3.5.5.
To build this crate on Windows, you will need to have Visual Studio installed.
You can control the number of CPU used to build libsass
by setting the MAKE_LIBSASS_JOBS
variable to the desired value. It defaults to the number of CPUs in the machine.
Binary
This package also provides a small binary that can be cargo install
ed to convert Sass files and print the output CSS.
Example usage:
$ sass-rs < source/style.scss # for SCSS
$ sass-rs --sass < source/style.sass # for SASS
$ sass-rs --sass --expanded < source/style.sass
$ sass-rs --sass --compact < source/style.sass
$ sass-rs --sass --compressed < source/style.sass
$ sass-rs --sass --compressed < source/style.sass > build/style.css
This is a small added feature that isn't meant to fulfill every usecases. If you want to have something added to the binary, do a PR as I will not implement it myself.