lyrs/Cargo.toml

38 lines
907 B
TOML
Raw Normal View History

2024-05-05 09:47:13 -05:00
[package]
name = "lyrs"
version = "0.1.0"
edition = "2021"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
2024-05-05 09:47:13 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-05-15 17:13:41 -05:00
axum = { version = "0.7.5", features = ["macros", "tokio", "tracing"] }
clap = { version = "4.5.4", features = ["derive", "env"] }
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"] }
notify = "6.1.1"
pathdiff = "0.2.1"
serde = "1.0.201"
2024-05-15 16:48:23 -05:00
thiserror = "1.0.60"
tokio = { version = "1.37.0", features = ["full"] }
2024-05-15 17:13:41 -05:00
tower-http = { version = "0.5.2", features = ["fs", "trace"] }
tower-livereload = "0.9.2"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
walkdir = "2.5.0"