36 releases

Uses old Rust 2015

0.4.22 Jun 1, 2021
0.4.21 May 21, 2020
0.4.19 Apr 5, 2020
0.4.18 Feb 11, 2020
0.0.8 Mar 28, 2015

#27 in #sass

Download history 193/week @ 2023-11-18 198/week @ 2023-11-25 102/week @ 2023-12-02 212/week @ 2023-12-09 88/week @ 2023-12-16 142/week @ 2023-12-23 121/week @ 2023-12-30 151/week @ 2024-01-06 194/week @ 2024-01-13 176/week @ 2024-01-20 155/week @ 2024-01-27 107/week @ 2024-02-03 113/week @ 2024-02-10 146/week @ 2024-02-17 282/week @ 2024-02-24 126/week @ 2024-03-02

704 downloads per month
Used in 13 crates (2 directly)

MIT license

1MB
24K SLoC

C++ 23K SLoC // 0.1% comments Rust 1K SLoC // 0.0% comments Visual Studio Project 194 SLoC M4 112 SLoC // 0.3% comments C 107 SLoC // 0.2% comments Automake 106 SLoC // 0.0% comments Bitbake 66 SLoC // 0.1% comments Perl 56 SLoC // 0.4% comments RPM Specfile 43 SLoC Visual Studio Solution 39 SLoC Shell 10 SLoC

sass-rs

Build Status Windows build status

Api documentation on docs.rs

This crate is a wrapper around libsass, currently tracking v3.6.4.

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 installed 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.

Not supported yet

Importers and functions are not supported yet.

Building (Windows)

Windows compilation using VS 2019 requires that all the environment variables for MSBuild to be availble.

An indicator that the environment is not properly setup is the following error message:

error MSB4019: The imported project "C:\Microsoft.Cpp.Default.props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.

If you find this error, you have a couple of of options to select:

  • [Easiest] Open the Developer Command Prompt for VS 2019 application to compile the project. This terminal will setup all the needed environment variables to let it compile.
  • Setup the environment variables (eg: PATH, LIB) as documented on Microsoft's website
  • Install the complete setup of Visual Studio 2015 - not only the Visual C++ Build tools

Dependencies