19 lines
443 B
TOML
19 lines
443 B
TOML
[package]
|
|
name = "doctree"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
|
|
[dependencies]
|
|
walkdir = "2.3.3"
|
|
pulldown-cmark = "0.9.3"
|
|
thiserror = "1.0.40"
|
|
lazy_static = "1.4.0"
|
|
toml = "0.7.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
redis = { version = "0.23.0", features = ["tokio-comp"] }
|
|
tokio = { version = "1.28.0", features = ["full"] }
|
|
sal = { git = "https://git.ourworld.tf/herocode/sal.git", branch = "main" }
|