zola/components/markdown/Cargo.toml

20 lines
363 B
TOML
Raw Normal View History

2017-07-01 07:47:41 +00:00
[package]
name = "markdown"
2017-07-01 07:47:41 +00:00
version = "0.1.0"
edition = "2021"
2020-06-15 17:14:25 +00:00
include = ["src/**/*"]
2017-07-01 07:47:41 +00:00
[dependencies]
2018-10-09 13:24:56 +00:00
pest = "2"
pest_derive = "2"
2017-07-01 07:47:41 +00:00
errors = { path = "../errors" }
utils = { path = "../utils" }
2018-05-03 18:50:30 +00:00
config = { path = "../config" }
console = { path = "../console" }
libs = { path = "../libs" }
2017-07-01 07:47:41 +00:00
[dev-dependencies]
templates = { path = "../templates" }
2022-02-25 16:13:29 +00:00
insta = "1.12.0"