2016-12-06 05:51:33 +00:00
|
|
|
[package]
|
2018-10-18 20:50:06 +00:00
|
|
|
name = "zola"
|
2019-07-19 09:10:28 +00:00
|
|
|
version = "0.9.0"
|
2019-06-24 08:22:41 +00:00
|
|
|
authors = ["Vincent Prouillet <hello@vincentprouillet.com>"]
|
2016-12-06 05:51:33 +00:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2018-03-16 18:11:08 +00:00
|
|
|
description = "A fast static site generator with everything built-in"
|
2018-10-18 20:50:06 +00:00
|
|
|
homepage = "https://www.getzola.org"
|
|
|
|
repository = "https://github.com/getzola/zola"
|
2016-12-06 05:51:33 +00:00
|
|
|
keywords = ["static", "site", "generator", "blog"]
|
2017-07-16 01:12:54 +00:00
|
|
|
# build = "build.rs"
|
2017-07-15 04:24:31 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
clap = "2"
|
2016-12-06 05:51:33 +00:00
|
|
|
|
2017-03-14 12:25:45 +00:00
|
|
|
[[bin]]
|
2018-10-18 20:50:06 +00:00
|
|
|
name = "zola"
|
2017-03-14 12:25:45 +00:00
|
|
|
|
2016-12-06 05:51:33 +00:00
|
|
|
[dependencies]
|
2018-09-22 14:05:07 +00:00
|
|
|
atty = "0.2.11"
|
2017-03-20 06:32:43 +00:00
|
|
|
clap = "2"
|
2017-06-22 07:28:52 +00:00
|
|
|
chrono = "0.4"
|
2018-09-22 14:05:07 +00:00
|
|
|
lazy_static = "1.1.0"
|
2019-06-23 08:47:36 +00:00
|
|
|
toml = "0.5"
|
2018-09-22 14:05:07 +00:00
|
|
|
termcolor = "1.0.4"
|
2017-07-27 09:24:43 +00:00
|
|
|
# Used in init to ensure the url given as base_url is a valid one
|
|
|
|
url = "1.5"
|
2017-03-06 10:35:56 +00:00
|
|
|
# Below is for the serve cmd
|
2019-06-18 23:05:00 +00:00
|
|
|
actix-files = "0.1"
|
|
|
|
actix-web = { version = "1.0", default-features = false, features = [] }
|
2017-03-06 10:35:56 +00:00
|
|
|
notify = "4"
|
2019-05-31 20:46:48 +00:00
|
|
|
ws = "0.8"
|
2018-01-22 17:11:25 +00:00
|
|
|
ctrlc = "3"
|
2019-07-04 21:42:37 +00:00
|
|
|
open = "1.2"
|
2017-03-06 10:35:56 +00:00
|
|
|
|
2017-07-01 07:47:41 +00:00
|
|
|
site = { path = "components/site" }
|
|
|
|
errors = { path = "components/errors" }
|
|
|
|
front_matter = { path = "components/front_matter" }
|
|
|
|
utils = { path = "components/utils" }
|
2018-01-29 17:40:12 +00:00
|
|
|
rebuild = { path = "components/rebuild" }
|
2017-07-01 07:47:41 +00:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"components/config",
|
|
|
|
"components/errors",
|
|
|
|
"components/front_matter",
|
2018-01-29 17:40:12 +00:00
|
|
|
"components/rebuild",
|
2017-07-01 07:47:41 +00:00
|
|
|
"components/rendering",
|
|
|
|
"components/site",
|
|
|
|
"components/templates",
|
|
|
|
"components/utils",
|
2018-03-15 17:58:32 +00:00
|
|
|
"components/search",
|
2018-02-02 20:35:04 +00:00
|
|
|
"components/imageproc",
|
2018-07-16 19:13:00 +00:00
|
|
|
"components/link_checker",
|
2018-10-02 14:42:34 +00:00
|
|
|
"components/library",
|
2017-07-01 07:47:41 +00:00
|
|
|
]
|
2018-10-02 14:42:34 +00:00
|
|
|
|
2019-06-09 09:27:55 +00:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2019-06-23 08:47:36 +00:00
|
|
|
codegen-units = 1
|