Begin add markdown parsing
Some checks failed
deploy / docker (push) Has been cancelled

This commit is contained in:
Florian RICHER 2023-11-26 15:36:01 +01:00
parent aca074ef01
commit 34e81035d0
9 changed files with 208 additions and 0 deletions

View file

@ -36,6 +36,8 @@ actix-files = { version = "0.6", optional = true }
actix-web = { version = "4", features = ["macros"], optional = true }
futures = { version = "0.3", optional = true }
simple_logger = { version = "4.2", optional = true }
pulldown-cmark = { version = "0.9", optional = true }
glob = { version = "0.3", optional = true }
[features]
default = ["csr"]
@ -64,6 +66,8 @@ ssr = [
"dep:actix-files",
"dep:futures",
"dep:simple_logger",
"dep:pulldown-cmark",
"dep:glob",
]
[package.metadata.cargo-all-features]