Add open feature

This commit is contained in:
Lachlan Sneff 2021-06-14 00:13:42 -04:00
parent e440094b37
commit ab5ac2eef0
2 changed files with 10 additions and 2 deletions

View File

@ -24,7 +24,6 @@ handlebars = "4.0"
lazy_static = "1.0" lazy_static = "1.0"
log = "0.4" log = "0.4"
memchr = "2.0" memchr = "2.0"
open = "1.1"
pulldown-cmark = "0.7.0" pulldown-cmark = "0.7.0"
regex = "1.0.0" regex = "1.0.0"
serde = "1.0" serde = "1.0"
@ -47,6 +46,9 @@ warp = { version = "0.2.2", default-features = false, features = ["websocket"],
elasticlunr-rs = { version = "2.3", optional = true, default-features = false } elasticlunr-rs = { version = "2.3", optional = true, default-features = false }
ammonia = { version = "3", optional = true } ammonia = { version = "3", optional = true }
# Open feature
open = { version = "1.1", optional = true }
[dev-dependencies] [dev-dependencies]
select = "0.5" select = "0.5"
semver = "0.11.0" semver = "0.11.0"
@ -54,7 +56,7 @@ pretty_assertions = "0.6"
walkdir = "2.0" walkdir = "2.0"
[features] [features]
default = ["watch", "serve", "search"] default = ["watch", "serve", "search", "open"]
watch = ["notify", "gitignore"] watch = ["notify", "gitignore"]
serve = ["futures-util", "tokio", "warp"] serve = ["futures-util", "tokio", "warp"]
search = ["elasticlunr-rs", "ammonia"] search = ["elasticlunr-rs", "ammonia"]

View File

@ -103,7 +103,13 @@ fn get_book_dir(args: &ArgMatches) -> PathBuf {
} }
fn open<P: AsRef<OsStr>>(path: P) { fn open<P: AsRef<OsStr>>(path: P) {
#[cfg(feature = "open")]
if let Err(e) = open::that(path) { if let Err(e) = open::that(path) {
error!("Error opening web browser: {}", e); error!("Error opening web browser: {}", e);
} }
#[cfg(not(feature = "open"))]
{
let _ = path;
error!("The browser open feature is not enabled");
}
} }