Skip to content

Commit

Permalink
Removed sass
Browse files Browse the repository at this point in the history
Due to the crate not building on musl and not being supported for android, it would be better to remove it for the time being until a better alternative is found
  • Loading branch information
dariusc93 committed Feb 18, 2019
1 parent 05b1f8d commit 9582608
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 27 deletions.
25 changes: 1 addition & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ libm = "0.1"
globwalk = "0.6"
# web
actix-web = { version = "0.7", features = ["ssl"] }
sass-rs = "0.2"
# cli and log
env_logger = "0.6"
clap = "2.32"
Expand Down
3 changes: 1 addition & 2 deletions src/bindings/web/mod.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
pub mod client;
pub mod server;
pub mod sass;

use rlua::prelude::*;
use crate::Result;

pub fn init(lua: &Lua) -> Result<()> {
client::init(lua)?;
sass::init(lua)?;

Ok(())
}

0 comments on commit 9582608

Please sign in to comment.