2016-12-06 05:51:33 +00:00
|
|
|
[package]
|
2018-10-18 20:50:06 +00:00
|
|
|
name = "zola"
|
2024-06-24 20:20:20 +00:00
|
|
|
version = "0.19.1"
|
2019-06-24 08:22:41 +00:00
|
|
|
authors = ["Vincent Prouillet <hello@vincentprouillet.com>"]
|
2023-08-04 21:04:09 +00:00
|
|
|
edition = "2021"
|
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"]
|
2020-06-15 16:13:11 +00:00
|
|
|
|
2020-06-15 17:14:25 +00:00
|
|
|
include = ["src/**/*", "LICENSE", "README.md"]
|
2017-07-15 04:24:31 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-02-07 11:42:23 +00:00
|
|
|
winres = "0.1"
|
|
|
|
time = "0.3"
|
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]
|
2023-01-02 21:48:39 +00:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
clap_complete = "4"
|
2017-03-06 10:35:56 +00:00
|
|
|
# Below is for the serve cmd
|
2021-01-05 21:06:52 +00:00
|
|
|
hyper = { version = "0.14.1", default-features = false, features = ["runtime", "server", "http2", "http1"] }
|
2021-09-04 06:10:02 +00:00
|
|
|
tokio = { version = "1.0.1", default-features = false, features = ["rt", "fs", "time"] }
|
2022-03-20 21:01:01 +00:00
|
|
|
time = { version = "0.3", features = ["formatting", "macros", "local-offset"] }
|
2024-05-22 18:33:03 +00:00
|
|
|
notify-debouncer-full = "0.3"
|
2019-08-07 22:37:37 +00:00
|
|
|
ws = "0.9"
|
2018-01-22 17:11:25 +00:00
|
|
|
ctrlc = "3"
|
2023-08-04 21:14:09 +00:00
|
|
|
open = "5"
|
2021-09-11 07:31:34 +00:00
|
|
|
pathdiff = "0.2"
|
2021-01-15 20:36:07 +00:00
|
|
|
# For mimetype detection in serve mode
|
|
|
|
mime_guess = "2.0"
|
2022-06-10 19:20:24 +00:00
|
|
|
# For essence_str() function, see https://github.com/getzola/zola/issues/1845
|
|
|
|
mime = "0.3.16"
|
|
|
|
|
2017-03-06 10:35:56 +00:00
|
|
|
|
2017-07-01 07:47:41 +00:00
|
|
|
site = { path = "components/site" }
|
|
|
|
errors = { path = "components/errors" }
|
2022-05-11 19:54:34 +00:00
|
|
|
console = { path = "components/console" }
|
2017-07-01 07:47:41 +00:00
|
|
|
utils = { path = "components/utils" }
|
2022-02-01 22:02:03 +00:00
|
|
|
libs = { path = "components/libs" }
|
|
|
|
|
2017-07-01 07:47:41 +00:00
|
|
|
|
2021-03-11 18:47:42 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
same-file = "1"
|
|
|
|
|
2021-08-18 13:32:34 +00:00
|
|
|
[features]
|
2023-01-20 19:59:44 +00:00
|
|
|
default = ["rust-tls"]
|
|
|
|
rust-tls = ["libs/rust-tls"]
|
|
|
|
native-tls = ["libs/native-tls"]
|
2022-02-01 22:02:03 +00:00
|
|
|
indexing-zh = ["libs/indexing-zh"]
|
|
|
|
indexing-ja = ["libs/indexing-ja"]
|
2021-08-18 13:32:34 +00:00
|
|
|
|
2017-07-01 07:47:41 +00:00
|
|
|
[workspace]
|
2022-02-01 22:02:03 +00:00
|
|
|
members = ["components/*"]
|
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
|
2022-08-10 21:54:06 +00:00
|
|
|
strip = true
|
2021-04-21 19:43:02 +00:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
# Disabling debug info speeds up builds a bunch,
|
|
|
|
# and we don't rely on it for debugging that much.
|
|
|
|
debug = 0
|
2022-02-07 11:42:23 +00:00
|
|
|
|
|
|
|
[package.metadata.winres]
|
|
|
|
OriginalFilename = "zola.exe"
|
|
|
|
InternalName = "zola"
|