1
0
mirror of https://github.com/lise-henry/crowbook synced 2024-09-25 07:50:40 +02:00
crowbook/Cargo.toml

31 lines
660 B
INI
Raw Normal View History

2016-02-18 04:06:14 +01:00
[package]
name = "crowbook"
2016-04-02 16:58:23 +02:00
version = "0.5.0"
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"
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"
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"
clap = "2"
walkdir = "0.1"
rustc-serialize = "0.3"