ticker/ticker-serve/Cargo.toml

16 lines
398 B
TOML
Raw Normal View History

2019-10-26 01:14:49 +02:00
[package]
name = "ticker-serve"
version = "0.1.0"
authors = ["Astro <astro@spaceboyz.net>"]
edition = "2018"
2020-11-04 11:59:07 +01:00
license = "AGPL-3.0-or-later"
2019-10-26 01:14:49 +02:00
[dependencies]
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.5", features = ["fs"] }
axum = "0.7"
askama = "0.12"
2022-09-05 16:54:37 +02:00
diesel = { version = "1", features = ["postgres", "chrono"] }
chrono = "0.4"
2019-10-26 01:14:49 +02:00
libticker = { path = "../libticker" }