zola/components/library/Cargo.toml

28 lines
551 B
TOML
Raw Permalink Normal View History

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