diff options
author | metamuffin <metamuffin@disroot.org> | 2022-08-30 16:54:57 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-08-30 16:54:57 +0200 |
commit | 802efbca25cb92d8567761361b6513fd57e05578 (patch) | |
tree | 62eb0139143cc343d83d92091eee8efaf0888001 /code/Cargo.toml | |
parent | ed6186a764701e702032156c9632ac19305652be (diff) | |
download | metamuffin-blog-802efbca25cb92d8567761361b6513fd57e05578.tar metamuffin-blog-802efbca25cb92d8567761361b6513fd57e05578.tar.bz2 metamuffin-blog-802efbca25cb92d8567761361b6513fd57e05578.tar.zst |
basic syntax highlighting
Diffstat (limited to 'code/Cargo.toml')
-rw-r--r-- | code/Cargo.toml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/code/Cargo.toml b/code/Cargo.toml index 8fd54fb..3547fd4 100644 --- a/code/Cargo.toml +++ b/code/Cargo.toml @@ -4,8 +4,9 @@ version = "0.1.0" edition = "2021" [dependencies] -laby = "0.2.4" -clap = { version = "3.2.17", features = ["derive"] } -anyhow = "1.0.62" -markdown = "0.3.0" -iso8601 = "0.5.0" +laby = "0.2.4" # html generation macros +clap = { version = "3.2.17", features = ["derive"] } # bloated argument parser +anyhow = "1.0.62" # error stuff +markdown = "0.3.0" # markdown parser +iso8601 = "0.5.0" # date parsing +synoptic = "1.2.0" # syntax highlighting |