-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
55659ba
commit 82f7304
Showing
10 changed files
with
794 additions
and
546 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,40 @@ | ||
[package] | ||
name = "markdeck" | ||
version = "0.1.0" | ||
version = "0.60.0" | ||
authors = ["Arne Hilmann <arne@hilmann.de>"] | ||
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[build-dependencies] | ||
grass = "0.10.4" | ||
grass = "0" | ||
anyhow = "1" | ||
|
||
[dependencies] | ||
rust-embed = { version = "5.8.0", features = ["compression"] } | ||
grass = "0.10.4" | ||
rusync = "0.7.0" | ||
serde = { version = "1.0.124", features = ["derive"] } | ||
serde_json = "1.0.64" | ||
glob = "0.3.0" | ||
rust-embed = { version = "5", features = ["compression"] } | ||
grass = "0" | ||
rusync = "0" | ||
serde = { version = "1", features = ["derive"] } | ||
serde_json = "1" | ||
glob = "0" | ||
|
||
actix = "0.10" | ||
actix-codec = "0.3" | ||
actix-codec = "0" | ||
actix-web = "3" | ||
actix-web-actors = "3" | ||
actix-files = "0.3" | ||
actix-files = "0" | ||
awc = "2" | ||
env_logger = "0.8" | ||
futures = "0.3.1" | ||
bytes = "0.5.3" | ||
env_logger = "0" | ||
futures = "0" | ||
bytes = "0" | ||
actix-service = "1" | ||
|
||
notify = "4.0.15" | ||
anyhow = "1.0" | ||
ctrlc = { version = "3.1.8", features = ["termination"] } | ||
uuid = { version = "0.8.2", features = ["serde", "v4"] } | ||
notify = "4" | ||
anyhow = "1" | ||
ctrlc = { version = "3", features = ["termination"] } | ||
uuid = { version = "0", features = ["serde", "v4"] } | ||
log = "0" | ||
walkdir = "2" | ||
regex = "1" | ||
|
||
clap = "2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1 @@ | ||
use std::error::Error; | ||
use std::fs; | ||
|
||
fn main() -> Result<(), Box<dyn Error>> { | ||
println!("compiling scss"); | ||
let sass = grass::from_path( | ||
"src/markdeck/assets/markdeck/css/markdeck.revealjs.scss", | ||
&grass::Options::default())?; | ||
fs::write("src/markdeck/assets/markdeck/css/markdeck.revealjs.css", sass)?; | ||
Ok(()) | ||
} | ||
fn main() {} |
Oops, something went wrong.