2023-08-17 21:59:56 +02:00
|
|
|
[package]
|
2023-08-18 13:39:08 +02:00
|
|
|
name = "treehouse"
|
2023-08-17 21:59:56 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-08-19 17:52:13 +02:00
|
|
|
|
|
|
|
treehouse-format = { workspace = true }
|
|
|
|
|
2023-08-18 17:04:12 +02:00
|
|
|
anyhow = "1.0.75"
|
2024-02-18 14:18:15 +01:00
|
|
|
axum = "0.7.4"
|
2024-07-22 20:34:42 +02:00
|
|
|
base64 = "0.21.7"
|
2024-07-19 18:04:11 +02:00
|
|
|
blake3 = "1.5.3"
|
2024-07-22 20:34:42 +02:00
|
|
|
chrono = "0.4.35"
|
2023-08-18 21:19:31 +02:00
|
|
|
clap = { version = "4.3.22", features = ["derive"] }
|
2023-08-18 13:25:20 +02:00
|
|
|
codespan-reporting = "0.11.1"
|
2023-08-18 17:04:12 +02:00
|
|
|
copy_dir = "0.1.3"
|
2023-08-19 17:52:13 +02:00
|
|
|
env_logger = "0.10.0"
|
2024-09-29 00:14:11 +02:00
|
|
|
git2 = { version = "0.19.0", default-features = false, features = ["vendored-libgit2"] }
|
2023-08-17 21:59:56 +02:00
|
|
|
handlebars = "4.3.7"
|
2024-02-18 14:18:15 +01:00
|
|
|
http-body = "1.0.0"
|
2024-02-20 23:30:36 +01:00
|
|
|
image = "0.24.8"
|
2024-07-21 10:21:00 +02:00
|
|
|
indexmap = { version = "2.2.6", features = ["serde"] }
|
2024-07-22 20:34:42 +02:00
|
|
|
jotdown = { version = "0.4.1", default-features = false }
|
2024-02-20 23:30:36 +01:00
|
|
|
log = { workspace = true }
|
2024-02-18 14:18:15 +01:00
|
|
|
rand = "0.8.5"
|
2024-07-22 20:34:42 +02:00
|
|
|
regex = "1.10.3"
|
2023-08-18 17:04:12 +02:00
|
|
|
serde = { version = "1.0.183", features = ["derive"] }
|
2024-02-18 14:18:15 +01:00
|
|
|
serde_json = "1.0.105"
|
2023-08-18 21:19:31 +02:00
|
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
2023-08-20 12:15:48 +02:00
|
|
|
toml_edit = { version = "0.19.14", features = ["serde"] }
|
2024-02-18 14:18:15 +01:00
|
|
|
tower-livereload = "0.9.2"
|
2023-08-19 17:52:13 +02:00
|
|
|
walkdir = "2.3.3"
|
2023-08-19 22:39:02 +02:00
|
|
|
ulid = "1.0.0"
|
2024-03-02 20:53:44 +01:00
|
|
|
url = "2.5.0"
|
2024-07-22 20:34:42 +02:00
|
|
|
|
|
|
|
# TODO djot: To remove once migration to Djot is complete.
|
|
|
|
pulldown-cmark = { version = "0.9.3", default-features = false }
|