aboutsummaryrefslogtreecommitdiff
path: root/code/Cargo.toml
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2022-09-26 14:14:58 +0200
committermetamuffin <metamuffin@disroot.org>2022-09-26 14:14:58 +0200
commit15d78464ba9a717a71e1dc47a4101c8b13ec6581 (patch)
tree43def89ffd6e9c2ff80e7f7eeecec6fcf18c4e92 /code/Cargo.toml
parent0a18eae178a23e7f7bfd88c37502e5e8c1fdf64a (diff)
downloadmetamuffin-blog-15d78464ba9a717a71e1dc47a4101c8b13ec6581.tar
metamuffin-blog-15d78464ba9a717a71e1dc47a4101c8b13ec6581.tar.bz2
metamuffin-blog-15d78464ba9a717a71e1dc47a4101c8b13ec6581.tar.zst
syntax highlighting with syntect
Diffstat (limited to 'code/Cargo.toml')
-rw-r--r--code/Cargo.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/code/Cargo.toml b/code/Cargo.toml
index 2155502..0a520aa 100644
--- a/code/Cargo.toml
+++ b/code/Cargo.toml
@@ -4,9 +4,13 @@ version = "0.1.0"
edition = "2021"
[dependencies]
+lazy_static = "*"
laby = "0.2.4" # html generation macros
clap = { version = "3.2.17", features = ["derive"] } # bloated argument parser
anyhow = "1.0.62" # error stuff
iso8601 = "0.5.0" # date parsing
synoptic = "1.2.0" # syntax highlighting
katex = "0.4.4"
+pest = "2.3.1"
+pest_derive = "2.3.1"
+syntect = "5.0.0"