mirror of
https://github.com/Xevion/time-banner.git
synced 2025-12-06 05:16:47 -06:00
47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
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
|
|
|
|
[lints.rust]
|
|
dead_code = "allow"
|
|
unused_imports = "allow"
|
|
unused_variables = "allow"
|
|
unused_mut = "allow"
|
|
|
|
[lints.clippy]
|
|
# Allow common development-phase lints
|
|
all = { level = "warn", priority = -1 }
|
|
too_many_arguments = "allow"
|
|
type_complexity = "allow"
|
|
|
|
[dependencies]
|
|
resvg = "0.45.1"
|
|
axum = "0.8.4"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
tokio = { version = "1.46", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
futures = "0.3.31"
|
|
png = "0.17.16"
|
|
dotenvy = "0.15.7"
|
|
envy = "0.4.2"
|
|
tera = "1.20.0"
|
|
lazy_static = "1.5.0"
|
|
timeago = "0.4.2"
|
|
chrono-tz = "0.10.3"
|
|
phf = { version = "0.12.1", features = ["macros"] }
|
|
phf_codegen = "0.12.1"
|
|
chrono = "0.4.41"
|
|
regex = "1.11.1"
|
|
|
|
[build-dependencies]
|
|
chrono = "0.4.41"
|
|
regex = "1.11.1"
|
|
phf = { version = "0.12.1", default-features = false }
|
|
phf_codegen = "0.12.1"
|
|
lazy_static = "1.5.0"
|