17 lines
454 B
TOML
17 lines
454 B
TOML
[package]
|
|
name = "localhub"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["rt-multi-thread"]}
|
|
axum = "0.7"
|
|
askama = "0.12"
|
|
askama_axum = "0.4"
|
|
tower-http = { version = "0.5", features = ["fs"] }
|
|
r2d2_postgres = "0.18"
|
|
deadpool-r2d2 = {version = "0.3", features = ["rt_tokio_1"]}
|
|
deadpool = "0.10"
|
|
thiserror = "1.0" |