sass-embedded-host-rust

🦀 A Rust library that will communicate with Embedded Dart Sass using the Embedded Sass protocol.

```rust use sass_embedded::{Sass, StringOptions};

let mut sass = Sass::new("path/to/sassembedded").unwrap(); let res = sass.compilestring("a {b: c}", StringOptions::default()).unwrap(); println!("{:?}", res); ```

For more details, checkout docs.rs and examples.

Contributing

  1. Install the Protocol Buffer Compiler.
  2. Run npm install && npm run setup.
  3. Find issues and welcome PRs.