2017-07-01 07:47:41 +00:00
|
|
|
[package]
|
2022-04-26 18:51:04 +00:00
|
|
|
name = "markdown"
|
2017-07-01 07:47:41 +00:00
|
|
|
version = "0.1.0"
|
2022-02-01 22:02:03 +00:00
|
|
|
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" }
|
2022-02-01 22:02:03 +00:00
|
|
|
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"
|