Skip to content

Commit 9582608

Browse files
committed
Removed sass
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
1 parent 05b1f8d commit 9582608

3 files changed

Lines changed: 2 additions & 27 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ libm = "0.1"
3434
globwalk = "0.6"
3535
# web
3636
actix-web = { version = "0.7", features = ["ssl"] }
37-
sass-rs = "0.2"
3837
# cli and log
3938
env_logger = "0.6"
4039
clap = "2.32"

src/bindings/web/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
pub mod client;
22
pub mod server;
3-
pub mod sass;
43

54
use rlua::prelude::*;
65
use crate::Result;
76

87
pub fn init(lua: &Lua) -> Result<()> {
98
client::init(lua)?;
10-
sass::init(lua)?;
9+
1110
Ok(())
1211
}

0 commit comments

Comments
 (0)