1
0
mirror of https://github.com/lise-henry/crowbook synced 2024-09-24 11:10:41 +02:00
crowbook/Cargo.toml

59 lines
1.2 KiB
INI
Raw Normal View History

2016-02-18 04:06:14 +01:00
[package]
name = "crowbook"
2016-10-21 22:12:52 +02:00
version = "0.10.2"
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-09-11 02:54:41 +02:00
documentation = "https://docs.rs/crowbook/"
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-10-21 22:13:24 +02:00
publish = true
2016-10-07 20:47:21 +02:00
build = "build.rs"
2016-02-18 04:06:14 +01:00
exclude = [
"docs/*",
"img/*",
"config.book",
"book_example/*",
2016-09-23 03:42:20 +02:00
"ci/*",
".travis.yml",
"appveyor.yml",
]
2016-02-18 04:06:14 +01:00
[lib]
name = "crowbook"
path = "src/lib/lib.rs"
2016-09-22 06:14:24 +02:00
doctest = false
2016-02-18 04:06:14 +01:00
[[bin]]
name = "crowbook"
path = "src/bin/main.rs"
doc = false
2016-09-24 21:33:22 +02:00
[features]
default = ["clap"]
proofread = ["caribon", "hyper", "url"]
2016-09-24 21:33:22 +02:00
2016-10-07 20:47:21 +02:00
[build-dependencies]
2016-10-14 03:48:57 +02:00
crowbook-localize = "0.0.8"
2016-10-07 20:47:21 +02:00
2016-02-18 04:06:14 +01:00
[dependencies]
2016-03-05 00:36:48 +01:00
mime_guess = "1"
2016-04-14 15:25:51 +02:00
pulldown-cmark = "0.0.8"
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-08-16 23:16:03 +02:00
uuid = { version = "0.3", features = ["v4"] }
walkdir = "0.1"
rustc-serialize = "0.3"
2016-09-23 23:05:45 +02:00
crossbeam = "0.2"
crowbook-text-processing = "^0.2.2"
2016-10-20 03:20:35 +02:00
#crowbook-text-processing = { path = "../crowbook-text-processing" }
2016-10-07 20:47:21 +02:00
lazy_static = "0.2.1"
2016-10-04 17:21:45 +02:00
caribon = { version = "0.7", optional = true }
clap = { version = "2", optional = true }
hyper = { version = "0.9", optional = true }
2016-09-27 19:30:06 +02:00
url = { version = "1", optional = true }
2016-10-04 17:21:45 +02:00