2017-07-01 16:47:41 +09:00
|
|
|
[package]
|
|
|
|
name = "utils"
|
|
|
|
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"
|
2020-06-15 19:14:25 +02:00
|
|
|
include = ["src/**/*"]
|
2017-07-01 16:47:41 +09:00
|
|
|
|
|
|
|
[dependencies]
|
2019-12-07 17:50:51 +01:00
|
|
|
tera = "1"
|
2018-05-16 17:52:26 -04:00
|
|
|
unicode-segmentation = "1.2"
|
2018-03-14 22:03:06 +01:00
|
|
|
walkdir = "2"
|
2019-06-23 10:47:36 +02:00
|
|
|
toml = "0.5"
|
2021-04-19 16:33:12 +08:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2019-12-21 10:44:13 +01:00
|
|
|
slug = "0.1"
|
2020-02-05 09:13:14 +01:00
|
|
|
percent-encoding = "2"
|
2020-08-11 11:28:14 -07:00
|
|
|
filetime = "0.2.12"
|
2021-08-12 08:54:55 +02:00
|
|
|
minify-html = "0.6"
|
2020-02-05 09:13:14 +01:00
|
|
|
|
|
|
|
errors = { path = "../errors" }
|
2017-07-01 16:47:41 +09:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-04-25 10:28:23 +02:00
|
|
|
tempfile = "3"
|