2016-02-18 04:06:14 +01:00
|
|
|
[package]
|
|
|
|
name = "crowbook"
|
2016-03-03 17:40:38 +01:00
|
|
|
version = "0.5.0-unreleased"
|
2016-02-18 04:06:14 +01:00
|
|
|
authors = ["Elisabeth Henry <liz.henry@ouvaton.org>"]
|
2016-02-25 20:13:12 +01:00
|
|
|
description = "Render a Markdown book in HTML, PDF or Epub"
|
2016-02-20 04:49:20 +01:00
|
|
|
repository = "https://github.com/lise-henry/crowbook"
|
2016-02-25 20:13:12 +01:00
|
|
|
documentation = "http://lise-henry.github.io/rust/crowbook/index.html"
|
2016-02-20 04:49:20 +01:00
|
|
|
readme = "README.md"
|
2016-02-20 05:49:41 +01:00
|
|
|
keywords = ["markdown", "book"]
|
2016-02-20 18:44:48 +01:00
|
|
|
license = "LGPL-2.1+"
|
2016-02-18 04:06:14 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "crowbook"
|
|
|
|
path = "src/lib/lib.rs"
|
2016-02-26 15:27:56 +01:00
|
|
|
doctest = false
|
2016-02-18 04:06:14 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "crowbook"
|
|
|
|
path = "src/bin/main.rs"
|
|
|
|
doc = false
|
|
|
|
|
|
|
|
[dependencies]
|
2016-03-05 00:36:48 +01:00
|
|
|
mime_guess = "1"
|
2016-02-18 22:05:54 +01:00
|
|
|
pulldown-cmark = "0.0.7"
|
2016-03-01 01:28:36 +01:00
|
|
|
yaml-rust = "0.3"
|
2016-03-05 00:36:48 +01:00
|
|
|
mustache = "0.7"
|
2016-02-19 02:56:43 +01:00
|
|
|
chrono = "0.2"
|
2016-02-19 23:01:34 +01:00
|
|
|
uuid = "0.1"
|
2016-03-04 22:22:01 +01:00
|
|
|
clap = "2"
|
|
|
|
walkdir = "0.1"
|