diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-21T04·20+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-21T04·54+0000 |
commit | 4681c07bde702f64d630f25ef831267cd9ac09ee (patch) | |
tree | 2505a60cc01215eca5cf35b3d8637b096ccd0096 /tools/cheddar/Cargo.toml | |
parent | 87cf3a2c6f87394a31fb449a1a3495078fef3244 (diff) |
feat(tools/cheddar): Check in new syntax highlighting tool r/276
The first step with this tool will be to use it as a source-filter for cgit. The second step is to use it as the Markdown renderer by depending on one of the Markdown libraries, with integration for rendering code snippets directly.
Diffstat (limited to 'tools/cheddar/Cargo.toml')
-rw-r--r-- | tools/cheddar/Cargo.toml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/cheddar/Cargo.toml b/tools/cheddar/Cargo.toml new file mode 100644 index 000000000000..1ce121c025f1 --- /dev/null +++ b/tools/cheddar/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "cheddar" +version = "0.1.0" +authors = ["Vincent Ambo <mail@tazj.in>"] +edition = "2018" + +[dependencies.syntect] +version = "3.3" |