[package]
edition = "2024"
name = "jekyll"
version = "0.0.0"
authors = ["Aster <192607617@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust implementation of Jekyll static site generator compiler"
homepage = "https://github.com/doki-land/rusty-ssg"
readme = "README.md"
keywords = [
"jekyll",
"cli",
"compiler",
"markdown",
"blog",
]
categories = [
"command-line-utilities",
"compilers",
]
license = "AGPL-3.0"
repository = "https://github.com/doki-land/rusty-ssg/tree/dev/compilers/jekyll"
resolver = "2"
[features]
default = ["dev"]
dev = ["notify"]
[lib]
name = "jekyll"
path = "src/lib.rs"
[[bin]]
name = "jekyll"
path = "bin/jekyll.rs"
[[test]]
name = "collection_simple_test"
path = "tests/collection_simple_test.rs"
[[test]]
name = "collection_test"
path = "tests/collection_test.rs"
[[test]]
name = "defaults_test"
path = "tests/defaults_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "katex_test"
path = "tests/katex_test.rs"
[[test]]
name = "liquid_test"
path = "tests/liquid_test.rs"
[[test]]
name = "markdown_test"
path = "tests/markdown_test.rs"
[[test]]
name = "mod_test"
path = "tests/mod_test.rs"
[[test]]
name = "post_test"
path = "tests/post_test.rs"
[[test]]
name = "static_files_test"
path = "tests/static_files_test.rs"
[[bench]]
name = "compiler_bench"
path = "benches/compiler_bench.rs"
harness = false
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5.60"
features = [
"derive",
"derive",
]
[dependencies.console]
version = "0.16.2"
[dependencies.csv]
version = "1.3.10"
[dependencies.fs_extra]
version = "1.3.0"
[dependencies.http]
version = "1.3.1"
[dependencies.indicatif]
version = "0.18.4"
[dependencies.lazy_static]
version = "1.5.0"
[dependencies.nargo-document]
version = "0.0.0"
[dependencies.nargo-parser]
version = "0.0.0"
[dependencies.nargo-template]
version = "0.0.0"
[dependencies.nargo-types]
version = "0.0.0"
[dependencies.notify]
version = "6.1.1"
features = ["crossbeam-channel"]
optional = true
default-features = false
[dependencies.oak-core]
version = "0.0.8"
[dependencies.oak-markdown]
version = "0.0.8"
[dependencies.oak-toml]
version = "0.0.8"
features = ["serde"]
[dependencies.oak-vfs]
version = "0.0.8"
[dependencies.oak-yaml]
version = "0.0.8"
features = ["serde"]
[dependencies.regex]
version = "1.12"
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"rc",
"derive",
]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.slug]
version = "0.1.5"
[dependencies.tokio]
version = "1.50.0"
features = [
"full",
"rt-multi-thread",
"net",
"macros",
]
[dependencies.wae-https]
version = "0.0.2"
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.criterion]
version = "0.8.2"
[dev-dependencies.ntest]
version = "0.9.5"
[dev-dependencies.tempfile]
version = "3.26.0"