2016-12-06 14:51:33 +09:00
|
|
|
[package]
|
2018-10-18 22:50:06 +02:00
|
|
|
name = "zola"
|
2021-07-19 20:05:04 +02:00
|
|
|
version = "0.14.1"
|
2019-06-24 10:22:41 +02:00
|
|
|
authors = ["Vincent Prouillet <hello@vincentprouillet.com>"]
|
2019-12-21 16:52:39 -05:00
|
|
|
edition = "2018"
|
2016-12-06 14:51:33 +09:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2018-03-16 19:11:08 +01:00
|
|
|
description = "A fast static site generator with everything built-in"
|
2018-10-18 22:50:06 +02:00
|
|
|
homepage = "https://www.getzola.org"
|
|
|
|
repository = "https://github.com/getzola/zola"
|
2016-12-06 14:51:33 +09:00
|
|
|
keywords = ["static", "site", "generator", "blog"]
|
2020-06-15 18:13:11 +02:00
|
|
|
|
2020-06-15 19:14:25 +02:00
|
|
|
include = ["src/**/*", "LICENSE", "README.md"]
|
2017-07-15 13:24:31 +09:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
clap = "2"
|
2016-12-06 14:51:33 +09:00
|
|
|
|
2017-03-14 21:25:45 +09:00
|
|
|
[[bin]]
|
2018-10-18 22:50:06 +02:00
|
|
|
name = "zola"
|
2017-03-14 21:25:45 +09:00
|
|
|
|
2016-12-06 14:51:33 +09:00
|
|
|
[dependencies]
|
2018-09-22 16:05:07 +02:00
|
|
|
atty = "0.2.11"
|
2020-06-18 21:11:22 +02:00
|
|
|
clap = { version = "2", default-features = false }
|
2017-06-22 16:28:52 +09:00
|
|
|
chrono = "0.4"
|
2020-08-16 18:39:04 +02:00
|
|
|
lazy_static = "1.1"
|
2018-09-22 16:05:07 +02:00
|
|
|
termcolor = "1.0.4"
|
2017-07-27 18:24:43 +09:00
|
|
|
# Used in init to ensure the url given as base_url is a valid one
|
2019-08-08 00:37:37 +02:00
|
|
|
url = "2"
|
2017-03-06 19:35:56 +09:00
|
|
|
# Below is for the serve cmd
|
2021-01-05 22:06:52 +01:00
|
|
|
hyper = { version = "0.14.1", default-features = false, features = ["runtime", "server", "http2", "http1"] }
|
|
|
|
tokio = { version = "1.0.1", default-features = false, features = ["rt", "fs"] }
|
2021-01-07 19:16:31 +01:00
|
|
|
percent-encoding = "2"
|
2017-03-06 19:35:56 +09:00
|
|
|
notify = "4"
|
2019-08-08 00:37:37 +02:00
|
|
|
ws = "0.9"
|
2018-01-22 18:11:25 +01:00
|
|
|
ctrlc = "3"
|
2021-08-12 08:54:55 +02:00
|
|
|
open = "2"
|
2019-08-01 11:18:42 +03:00
|
|
|
globset = "0.4"
|
2020-09-21 18:02:37 +02:00
|
|
|
relative-path = "1"
|
2020-12-23 10:37:05 +01:00
|
|
|
serde_json = "1.0"
|
2021-01-15 21:36:07 +01:00
|
|
|
# For mimetype detection in serve mode
|
|
|
|
mime_guess = "2.0"
|
2017-03-06 19:35:56 +09:00
|
|
|
|
2017-07-01 16:47:41 +09:00
|
|
|
site = { path = "components/site" }
|
|
|
|
errors = { path = "components/errors" }
|
|
|
|
front_matter = { path = "components/front_matter" }
|
|
|
|
utils = { path = "components/utils" }
|
2021-04-19 16:33:12 +08:00
|
|
|
search = { path = "components/search" }
|
2017-07-01 16:47:41 +09:00
|
|
|
|
2021-03-11 19:47:42 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
same-file = "1"
|
|
|
|
|
2021-08-18 07:32:34 -06:00
|
|
|
[features]
|
|
|
|
default = ["rust-tls"]
|
|
|
|
rust-tls = ["site/rust-tls"]
|
|
|
|
native-tls = ["site/native-tls"]
|
|
|
|
|
2017-07-01 16:47:41 +09:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"components/config",
|
|
|
|
"components/errors",
|
|
|
|
"components/front_matter",
|
|
|
|
"components/rendering",
|
|
|
|
"components/site",
|
|
|
|
"components/templates",
|
|
|
|
"components/utils",
|
2018-03-15 18:58:32 +01:00
|
|
|
"components/search",
|
2018-02-02 21:35:04 +01:00
|
|
|
"components/imageproc",
|
2018-07-16 21:13:00 +02:00
|
|
|
"components/link_checker",
|
2018-10-02 16:42:34 +02:00
|
|
|
"components/library",
|
2017-07-01 16:47:41 +09:00
|
|
|
]
|
2018-10-02 16:42:34 +02:00
|
|
|
|
2019-06-09 11:27:55 +02:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2019-06-23 10:47:36 +02:00
|
|
|
codegen-units = 1
|
2021-04-21 21:43:02 +02:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
# Disabling debug info speeds up builds a bunch,
|
|
|
|
# and we don't rely on it for debugging that much.
|
|
|
|
debug = 0
|