diff --git a/Cargo.lock b/Cargo.lock index 5dd99a0..60fe546 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -131,9 +131,9 @@ dependencies = [ [[package]] name = "comrak" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b818732a109eeabbe99fee28030ff8ecbd606889fcd25509ed933e6c69b7aa69" +checksum = "bcfb8008d04126b176c76cbfdecf9a2ccb4bacc70af87c8da6136d63d7b7292a" dependencies = [ "clap", "entities", @@ -141,9 +141,11 @@ dependencies = [ "pest", "pest_derive", "regex", + "shell-words", "twoway", "typed-arena", "unicode_categories", + "xdg", ] [[package]] @@ -378,7 +380,7 @@ dependencies = [ [[package]] name = "hotstuff" -version = "0.1.10" +version = "0.1.12" dependencies = [ "chrono", "comrak", @@ -1019,6 +1021,12 @@ dependencies = [ "opaque-debug", ] +[[package]] +name = "shell-words" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6fa3938c99da4914afedd13bf3d79bcb6c277d1b2c398d23257a304d9e1b074" + [[package]] name = "siphasher" version = "0.3.3" @@ -1393,3 +1401,9 @@ dependencies = [ "winapi 0.2.8", "winapi-build", ] + +[[package]] +name = "xdg" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57" diff --git a/Cargo.toml b/Cargo.toml index 9bc065c..a45e63f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hotstuff" description = "A composable, turnkey document compiler" -version = "0.1.10" +version = "0.1.12" authors = ["Leandro Ostera "] edition = "2018" homepage = "https://github.com/AbstractMachinesLab/hotstuff" @@ -16,7 +16,7 @@ exclude = [ [dependencies] chrono = "0.4" -comrak = "0.8" +comrak = "0.9" fern = { version = "0.6", features = [ "colored" ] } http = "0.2" hyper = "0.13" diff --git a/README.md b/README.md index 983f9a9..a94a4d5 100644 --- a/README.md +++ b/README.md @@ -197,8 +197,5 @@ hotstuff is inspired by prior art: * the `bazel` build system, with its aggressive incremental compilation techniques -If you'd like to support this project consider doing so on Patreon: - - -Become a Patron - +If you'd like to support this project you can [sponsor us on +Github](https://github.com/sponsors/AbstractMachinesLab). diff --git a/npm/package.json b/npm/package.json index d7fab4b..432a68f 100644 --- a/npm/package.json +++ b/npm/package.json @@ -1,6 +1,6 @@ { "name": "@abstractmachines/hotstuff", - "version": "0.1.10", + "version": "0.1.11", "description": "A composable, turnkey document compiler", "bin": { "hotstuff": "./hotstuff" diff --git a/src/browser_reloader.js b/src/browser_reloader.js index 7a20b6d..d296468 100644 --- a/src/browser_reloader.js +++ b/src/browser_reloader.js @@ -1,3 +1,4 @@ + diff --git a/src/build_rules.rs b/src/build_rules.rs index ae04bb8..e6f9b37 100644 --- a/src/build_rules.rs +++ b/src/build_rules.rs @@ -53,6 +53,10 @@ pub fn compile_unit(cunit: CompilationUnit) -> Result comrak::markdown_to_html(&raw, &opts), _ => raw,