kttd/Cargo.toml

39 lines
1.0 KiB
TOML
Raw Permalink Normal View History

2023-05-12 11:12:46 +04:00
[package]
name = "kttd"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-05-17 20:28:22 +04:00
kttd-ui = {path = "crates/kttd-ui"}
axum = { version = "0.6.18", features = ["tracing", "http2", "ws"] }
2023-05-12 13:07:05 +04:00
axum-sessions = "0.5.0"
2023-05-12 11:12:46 +04:00
chrono = { version = "0.4.24", features = ["serde"] }
ctxerr = "0.2.5"
diesel = { version = "2.0.4", features = ["chrono"] }
diesel-async = { version = "0.2.2", features = ["postgres", "tokio-postgres", "deadpool"] }
2023-05-17 20:28:22 +04:00
dioxus-ssr = "0.3.0"
dotenv = "0.15.0"
log = "0.4.17"
2023-05-12 13:07:05 +04:00
rand = "0.8.5"
2023-05-12 11:12:46 +04:00
serde = { version = "1.0.163", features = ["derive"] }
2023-05-12 11:32:56 +04:00
serde_json = "1.0.96"
2023-05-12 13:07:05 +04:00
sha256 = "1.1.3"
2023-05-12 11:12:46 +04:00
tokio = { version = "1.28.0", features = ["parking_lot", "macros", "rt", "rt-multi-thread"] }
2023-05-17 20:28:22 +04:00
tower-http = { version = "0.4.0", features = ["fs"] }
dioxus-liveview = { version = "0.3.0", features = ["axum"] }
pretty_env_logger = "0.4.0"
cookie = "0.17.0"
dashmap = "5.4.0"
reqwest = "0.11.18"
dioxus = "0.3.2"
dioxus-hot-reload = "0.1.1"
[workspace]
members = [
"crates/kttd-ui",
]