2024-05-05 09:47:13 -05:00
|
|
|
[package]
|
|
|
|
name = "lyrs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-05 11:22:54 -05:00
|
|
|
axum = { version = "0.7.5", features = ["macros", "tokio"] }
|
2024-05-14 15:33:49 -05:00
|
|
|
clap = { version = "4.5.4", features = ["derive"] }
|
2024-05-05 11:22:54 -05:00
|
|
|
color-eyre = "0.6.3"
|
|
|
|
config = "0.14.0"
|
|
|
|
futures = "0.3.30"
|
2024-05-07 21:23:36 -05:00
|
|
|
minijinja = { version = "2.0.1", features = ["loader"] }
|
2024-05-05 11:22:54 -05:00
|
|
|
notify = "6.1.1"
|
2024-05-13 17:53:23 -05:00
|
|
|
pathdiff = "0.2.1"
|
2024-05-05 11:22:54 -05:00
|
|
|
redact = { version = "0.1.9", features = ["serde"] }
|
2024-05-13 17:53:23 -05:00
|
|
|
serde = "1.0.201"
|
2024-05-07 21:13:46 -05:00
|
|
|
sled = "0.34.7"
|
2024-05-05 11:22:54 -05:00
|
|
|
tokio = { version = "1.37.0", features = ["full"] }
|
|
|
|
tower = "0.4.13"
|
|
|
|
tower-http = { version = "0.5.2", features = ["fs"] }
|
|
|
|
tower-livereload = "0.9.2"
|
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
2024-05-13 17:53:23 -05:00
|
|
|
walkdir = "2.5.0"
|