blob: 0a520aaa852ca4fe0711926802b5b7abecb706d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[package]
name = "blog-tool"
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"
|