lyrs/Cargo.toml

53 lines
1.3 KiB
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
2024-05-17 12:00:37 -05:00
opt-level = "s"
lto = "fat"
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-20 11:35:39 -05:00
argon2 = { version = "0.5.3", features = ["std"] }
2024-07-13 20:32:37 -05:00
axum-login = "0.15.3"
bincode = "1.3.3"
chrono = { version = "0.4.38", features = ["serde"] }
2024-05-15 17:13:41 -05:00
clap = { version = "4.5.4", features = ["derive", "env"] }
color-eyre = "0.6.3"
config = "0.14.0"
futures = "0.3.30"
2024-05-17 12:00:37 -05:00
maud = "0.26.0"
notify = "6.1.1"
pathdiff = "0.2.1"
2024-07-14 08:49:45 -05:00
rand = "0.8.5"
2024-05-17 12:00:37 -05:00
redact = { version = "0.1.10", features = ["serde"] }
2024-07-06 09:43:07 -05:00
regex = { version = "1.10.5" }
serde = "1.0.201"
2024-05-20 11:35:39 -05:00
sled = { version = "0.34.7", features = [] }
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"
tower-sessions = "0.12.2"
tower-sessions-sled-store = { git = "https://github.com/lytedev/tower-sessions-sled-store.git", branch = "tower-sessions-0.12" }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
uuid = { version = "1.8.0", features = ["v7", "serde"] }
walkdir = "2.5.0"
2024-05-20 11:35:39 -05:00
[dependencies.axum]
version = "0.7.5"
features = ["macros", "tokio", "tracing"]