mirror of
https://github.com/Xevion/time-banner.git
synced 2025-12-06 03:16:46 -06:00
35 lines
828 B
TOML
35 lines
828 B
TOML
[package]
|
|
name = "time-banner"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
resvg = "0.34.1"
|
|
axum = "0.6.18"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.68"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
futures = "0.3.28"
|
|
png = "0.17.9"
|
|
dotenvy = "0.15.7"
|
|
envy = "0.4.2"
|
|
tera = "1.19.0"
|
|
lazy_static = "1.4.0"
|
|
timeago = "0.4.1"
|
|
chrono-tz = "0.8.3"
|
|
phf = { version = "0.11.2", features = ["macros"] }
|
|
phf_codegen = "0.11.1"
|
|
chrono = "0.4.26"
|
|
regex = "1.8.4"
|
|
|
|
[build-dependencies]
|
|
chrono = "0.4.26"
|
|
regex = "1.8.4"
|
|
phf = { version = "0.11.1", default-features = false }
|
|
phf_codegen = "0.11.1"
|
|
lazy_static = "1.4.0"
|