sass-rs 0.0.10

Higher level binding for the Sass library
docs.rs failed to build sass-rs-0.0.10
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: sass-rs-0.2.2

Wrapper library for low level sass-sys https://github.com/compass-rs/sass-sys

[Travis build status:] (https://travis-ci.org/compass-rs/sass-rs) ![Travis build status] (https://travis-ci.org/compass-rs/sass-rs.svg?branch=master)

Documentation: http://compass-rs.github.io/sass-rs/

This is work in progress. To test that it works run the examples

cargo run --example versions

Running `target/examples/versions`
libsass: 3.1.0-beta.2-2-g420d
sass2scss: 1.0.3

The example below expands sass variables and calls custom functions defined in Rust.

cargo run --example compile_sass examples/simple.scss

Running `target/examples/compile_sass examples/simple.scss`
Compiling sass file: `examples/simple.scss`.
------- css  ------
body {
  font: 100% Helvetica, sans-serif;
  color: #333;
  content: foo-ed; }
--------