accounters/webserver/Cargo.toml

23 lines
614 B
TOML
Raw Normal View History

2024-02-12 14:04:03 +01:00
[package]
name = "webserver"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["lib"]
2024-02-12 14:04:03 +01:00
[dependencies]
serde = { workspace = true, features = ["derive"] }
chrono = { workspace = true, features = ["serde"] }
sqlx = { workspace = true, features = ["runtime-tokio", "sqlite", "chrono"]}
tokio = { version = "1", features = ["full"] }
2024-02-19 23:51:18 +01:00
axum = { version = "0.6.20", features = ["macros", "headers", "form"] }
2024-02-12 14:04:03 +01:00
hyper = "0.14.27"
serde_json = "1"
accounters = { path = ".." }
2024-02-19 23:51:18 +01:00
tera = "1.19.1"
2024-05-21 22:59:26 +02:00
rand = "0.8"
web-view="0.7"