Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobo1239 committed Mar 19, 2016
1 parent 74fff81 commit b30a8bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ exclude = [
]

[dependencies]
clap = "1.5.3"
handlebars = "0.12.0"
rustc-serialize = "0.3.16"
pulldown-cmark = "0.0.6"
clap = "2.2.1"
handlebars = "0.16.0"
rustc-serialize = "0.3.18"
pulldown-cmark = "0.0.7"

# Watch feature
notify = { version = "2.5.4", optional = true }
time = { version = "0.1.33", optional = true }
time = { version = "0.1.34", optional = true }
crossbeam = { version = "0.2.8", optional = true }


Expand Down
4 changes: 2 additions & 2 deletions src/bin/mdbook.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::error::Error;
use std::io::{self, Write};
use std::path::{Path, PathBuf};

use clap::{App, ArgMatches, SubCommand};
use clap::{App, ArgMatches, SubCommand, AppSettings};

// Uses for the Watch feature
#[cfg(feature = "watch")]
Expand All @@ -36,7 +36,7 @@ fn main() {
.author("Mathieu David <[email protected]>")
// Get the version from our Cargo.toml using clap's crate_version!() macro
.version(&*format!("v{}", crate_version!()))
.subcommand_required(true)
.setting(AppSettings::SubcommandRequired)
.after_help("For more information about a specific command, try `mdbook <command> --help`")
.subcommand(SubCommand::with_name("init")
.about("Create boilerplate structure and files in the directory")
Expand Down

0 comments on commit b30a8bd

Please sign in to comment.