39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
TOML
[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]
|
|
kttd-ui = {path = "crates/kttd-ui"}
|
|
|
|
axum = { version = "0.6.18", features = ["tracing", "http2", "ws"] }
|
|
axum-sessions = "0.5.0"
|
|
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"] }
|
|
dioxus-ssr = "0.3.0"
|
|
dotenv = "0.15.0"
|
|
log = "0.4.17"
|
|
rand = "0.8.5"
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
serde_json = "1.0.96"
|
|
sha256 = "1.1.3"
|
|
tokio = { version = "1.28.0", features = ["parking_lot", "macros", "rt", "rt-multi-thread"] }
|
|
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",
|
|
]
|
|
|