tvl-depot/tools/cheddar/Cargo.toml
Vincent Ambo d35aa4ae46 refactor(cheddar): Set up scaffolding for Markdown rendering
Generalises the two bits of the program that will be required either
way (extension parsing and syntax loading).

A dependency on Comrak is introduced as I think GitHub-flavoured
Markdown (with all its fancy extensions) is desirable!
2019-12-21 14:09:12 +00:00

10 lines
171 B
TOML

[package]
name = "cheddar"
version = "0.1.0"
authors = ["Vincent Ambo <mail@tazj.in>"]
edition = "2018"
[dependencies]
comrak = "0.6"
lazy_static = "1.4"
syntect = "3.3"