diff options
Diffstat (limited to 'code/Cargo.toml')
-rw-r--r-- | code/Cargo.toml | 4 |
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" |