2017-07-01 07:47:41 +00:00
|
|
|
[package]
|
|
|
|
name = "site"
|
|
|
|
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"
|
2020-06-15 17:14:25 +00:00
|
|
|
include = ["src/**/*"]
|
2017-07-01 07:47:41 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-12-07 16:50:51 +00:00
|
|
|
tera = "1"
|
2019-05-31 20:46:48 +00:00
|
|
|
glob = "0.3"
|
2020-09-02 07:41:51 +00:00
|
|
|
minify-html = "0.3.8"
|
2018-02-15 09:41:49 +00:00
|
|
|
rayon = "1"
|
|
|
|
serde = "1"
|
|
|
|
serde_derive = "1"
|
2017-07-24 08:46:29 +00:00
|
|
|
sass-rs = "0.2"
|
2020-08-16 16:39:04 +00:00
|
|
|
lazy_static = "1.1"
|
2020-09-21 16:02:37 +00:00
|
|
|
relative-path = "1"
|
2017-07-13 12:20:17 +00:00
|
|
|
|
2017-07-01 07:47:41 +00:00
|
|
|
errors = { path = "../errors" }
|
|
|
|
config = { path = "../config" }
|
|
|
|
utils = { path = "../utils" }
|
|
|
|
templates = { path = "../templates" }
|
|
|
|
front_matter = { path = "../front_matter" }
|
2018-03-15 17:58:32 +00:00
|
|
|
search = { path = "../search" }
|
2018-02-02 20:35:04 +00:00
|
|
|
imageproc = { path = "../imageproc" }
|
2018-10-02 14:42:34 +00:00
|
|
|
library = { path = "../library" }
|
2019-05-27 12:05:07 +00:00
|
|
|
link_checker = { path = "../link_checker" }
|
2017-07-01 07:47:41 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-04-25 08:28:23 +00:00
|
|
|
tempfile = "3"
|