[package] name = "crowbook" version = "0.10.3-pre" authors = ["Elisabeth Henry "] description = "Render a Markdown book in HTML, PDF or Epub" repository = "https://github.com/lise-henry/crowbook" documentation = "https://docs.rs/crowbook/" readme = "README.md" keywords = ["markdown", "book"] license = "LGPL-2.1+" publish = true build = "build.rs" exclude = [ "docs/*", "img/*", "config.book", "book_example/*", "ci/*", ".travis.yml", "appveyor.yml", ] [lib] name = "crowbook" path = "src/lib/lib.rs" doctest = false [[bin]] name = "crowbook" path = "src/bin/main.rs" doc = false [features] default = ["clap"] proofread = ["caribon", "hyper", "url"] [build-dependencies] # crowbook-intl = "0.1" crowbook-intl = { git = "https://github.com/lise-henry/crowbook-intl.git" } # crowbook-intl = { path = "../crowbook-intl" } [dependencies] mime_guess = "1" pulldown-cmark = "0.0.8" yaml-rust = "0.3" mustache = "0.7" chrono = "0.2" uuid = { version = "0.3", features = ["v4"] } walkdir = "0.1" rustc-serialize = "0.3" crossbeam = "0.2" crowbook-text-processing = "^0.2.2" #crowbook-text-processing = { path = "../crowbook-text-processing" } lazy_static = "0.2.1" caribon = { version = "0.7", optional = true } clap = { version = "2", optional = true } url = { version = "1", optional = true } term = "0.4" crowbook-intl-runtime = { git = "https://github.com/lise-henry/crowbook-intl-runtime.git" } [dependencies.hyper] version = "0.9" optional = true default-features = false