26 lines
601 B
TOML
26 lines
601 B
TOML
[package]
|
|
name = "treehouse"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
|
|
treehouse-format = { workspace = true }
|
|
|
|
anyhow = "1.0.75"
|
|
axum = "0.6.20"
|
|
clap = { version = "4.3.22", features = ["derive"] }
|
|
codespan-reporting = "0.11.1"
|
|
copy_dir = "0.1.3"
|
|
env_logger = "0.10.0"
|
|
log = { workspace = true }
|
|
handlebars = "4.3.7"
|
|
pulldown-cmark = { version = "0.9.3", default-features = false }
|
|
serde = { version = "1.0.183", features = ["derive"] }
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
|
tower-http = { version = "0.4.3", features = ["fs"] }
|
|
tower-livereload = "0.8.0"
|
|
walkdir = "2.3.3"
|
|
|
|
|