mirror of
https://github.com/getzola/zola
synced 2024-12-12 21:32:29 +00:00
6240ed5469
* add external_level and internal_level * remove unnecessary debug derive on LinkDef * clarify doc comment about link check levels * simplify link checker logging * add missing warn prefix * simplify link level logging, remove "Level" from linklevel variants * remove link level config from test site * switch back to using bail! from get_link_domain * move console's deps to libs * remove unnecessary reference * calling console::error/warn directly * emit one error, or one warning, per link checker run * various link checker level changes * add docs about link checker levels * remove accidentally committed test site * remove completed TODO
19 lines
363 B
TOML
19 lines
363 B
TOML
[package]
|
|
name = "markdown"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
include = ["src/**/*"]
|
|
|
|
[dependencies]
|
|
pest = "2"
|
|
pest_derive = "2"
|
|
|
|
errors = { path = "../errors" }
|
|
utils = { path = "../utils" }
|
|
config = { path = "../config" }
|
|
console = { path = "../console" }
|
|
libs = { path = "../libs" }
|
|
|
|
[dev-dependencies]
|
|
templates = { path = "../templates" }
|
|
insta = "1.12.0"
|