2017-07-01 07:47:41 +00:00
|
|
|
[package]
|
|
|
|
name = "utils"
|
|
|
|
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"
|
2018-05-16 21:52:26 +00:00
|
|
|
unicode-segmentation = "1.2"
|
2018-03-14 21:03:06 +00:00
|
|
|
walkdir = "2"
|
2019-06-23 08:47:36 +00:00
|
|
|
toml = "0.5"
|
2021-04-19 08:33:12 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2019-12-21 09:44:13 +00:00
|
|
|
slug = "0.1"
|
2020-02-05 08:13:14 +00:00
|
|
|
percent-encoding = "2"
|
2020-08-11 18:28:14 +00:00
|
|
|
filetime = "0.2.12"
|
2021-08-09 18:28:14 +00:00
|
|
|
minify-html = "0.5"
|
2020-02-05 08:13:14 +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"
|