Crates.io | sass-rs |
lib.rs | sass-rs |
version | 0.2.2 |
source | src |
created_at | 2015-02-03 06:17:11.669646 |
updated_at | 2019-05-22 12:40:15.143182 |
description | Higher level binding for the Sass library |
homepage | https://github.com/compass-rs/sass-rs |
repository | https://github.com/compass-rs/sass-rs.git |
max_upload_size | |
id | 1338 |
size | 19,335 |
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.
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.