-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (45 loc) · 1.37 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "sprokkel"
version = "0.1.0"
edition = "2021"
description = "A static site generator"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/tomcur/sprokkel"
[features]
default = []
katex = ["dep:katex"]
latex2mathml = ["dep:latex2mathml"]
[dependencies]
anyhow = "1"
bitvec = "1.0.1"
clap = { version = "4.5", features = ["derive"] }
image = "0.25"
notify-debouncer-full = "0.3"
minijinja = { version = "1.0", features = ["loader"] }
rayon = "1.10"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9.34+deprecated"
thiserror = "1.0.60"
toml = "0.8"
walkdir = "2.5"
bumpalo = { version = "3.16", features = ["collections"] }
genawaiter = { version = "0.99", features = ["proc_macro"] }
jotdown = "0.4"
pulldown-cmark = "0.10.1"
pulldown-cmark-escape = "0.10.1"
log = "0.4"
simplelog = { version = "0.12.0", features = ["paris"] }
tree-sitter-highlight = "0.20"
tree-sitter-bash = "0.20"
tree-sitter-c = "0.20"
tree-sitter-cpp = "0.20"
tree-sitter-djot = { git = "https://github.com/treeman/tree-sitter-djot", rev = "bc94a2867f7a1040c416212207e7e28e79ef0339" }
tree-sitter-nix = "0.0.1"
tree-sitter-javascript = "0.20"
tree-sitter-python = "0.20"
tree-sitter-rust = "0.20"
tree-sitter-toml = "0.20"
tree-sitter-typescript = "0.20"
latex2mathml = { version = "0.2", optional = true }
katex = { version = "0.4.6", optional = true }