[package] name = "mdbook" version = "0.3.5" authors = [ "Mathieu David ", "Michael-F-Bryan ", "Matt Ickstadt " ] documentation = "http://rust-lang.github.io/mdBook/index.html" edition = "2018" exclude = ["/book-example/*"] keywords = ["book", "gitbook", "rustbook", "markdown"] license = "MPL-2.0" readme = "README.md" repository = "https://github.com/rust-lang/mdBook" description = "Creates a book from markdown files" [dependencies] chrono = "0.4" clap = "2.24" env_logger = "0.6" error-chain = "0.12" handlebars = { version = "2.0", default-features = false, features = ["no_dir_source"] } itertools = "0.8" lazy_static = "1.0" log = "0.4" memchr = "2.0" open = "1.1" pulldown-cmark = "0.6.1" regex = "1.0.0" serde = "1.0" serde_derive = "1.0" serde_json = "1.0" shlex = "0.1" tempfile = "3.0" toml = "0.5.1" toml-query = "0.9" # Watch feature notify = { version = "4.0", optional = true } gitignore = { version = "1.0", optional = true } # Serve feature iron = { version = "0.6", optional = true } staticfile = { version = "0.5", optional = true } ws = { version = "0.9", optional = true} # Search feature elasticlunr-rs = { version = "2.3", optional = true, default-features = false } ammonia = { version = "3", optional = true } [dev-dependencies] select = "0.4" pretty_assertions = "0.6" walkdir = "2.0" [features] default = ["output", "watch", "serve", "search"] debug = [] output = [] watch = ["notify", "gitignore"] serve = ["iron", "staticfile", "ws"] search = ["elasticlunr-rs", "ammonia"] [[bin]] doc = false name = "mdbook"