zola/components/library/Cargo.toml

27 lines
532 B
TOML
Raw Normal View History

2017-07-01 16:47:41 +09:00
[package]
2018-10-02 16:42:34 +02:00
name = "library"
2017-07-01 16:47:41 +09:00
version = "0.1.0"
2018-03-14 18:22:24 +01:00
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
2019-12-21 16:52:39 -05:00
edition = "2018"
2017-07-01 16:47:41 +09:00
[dependencies]
2019-09-16 11:44:39 +02:00
slotmap = "0.4"
2018-10-02 16:42:34 +02:00
rayon = "1"
chrono = { version = "0.4", features = ["serde"] }
2019-12-07 17:50:51 +01:00
tera = "1"
2018-02-15 10:41:49 +01:00
serde = "1"
2018-10-02 16:42:34 +02:00
serde_derive = "1"
2018-10-25 16:22:00 +02:00
regex = "1"
lazy_static = "1"
2017-07-01 16:47:41 +09:00
2018-10-02 16:42:34 +02:00
front_matter = { path = "../front_matter" }
2017-07-01 16:47:41 +09:00
config = { path = "../config" }
utils = { path = "../utils" }
rendering = { path = "../rendering" }
2018-10-02 16:42:34 +02:00
errors = { path = "../errors" }
2017-07-01 16:47:41 +09:00
[dev-dependencies]
2018-04-25 10:28:23 +02:00
tempfile = "3"
toml = "0.5"
2018-06-22 13:39:29 +02:00
globset = "0.4"