ovlach_frontend/Cargo.toml

34 lines
1.2 KiB
TOML
Raw Normal View History

2023-11-26 15:36:39 +00:00
[package]
name = "ovlach_frontend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_yaml = "0.9.27"
serde = { version = "1.0", features = ["derive"] }
log = "0.4.20"
fern = "0.6.2"
rocket = { version = "0.5.0", features = ["json"] }
rocket_dyn_templates = { version = "0.1.0", features = ["tera"]}
2023-11-26 17:40:12 +00:00
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }
2023-12-07 21:57:14 +00:00
ovlach_data = { version = "0.1.3", registry = "gitea_ovlach"}
2023-12-03 14:46:05 +00:00
nanobyte_opentelemetry = { version = "0.2.3", registry = "gitea_nanobyte", features = ["rocket-reqwest"] }
2023-11-26 21:20:55 +00:00
chrono = "0.4.31"
2023-11-26 21:46:38 +00:00
sha256 = "1.4.0"
2023-11-26 22:53:31 +00:00
fluent-bundle = "0.15.2"
fluent-resmgr = "0.0.6"
2023-11-27 00:19:10 +00:00
unic-langid = "0.9.1"
2023-12-01 23:59:31 +00:00
phf = { version = "0.11.2", features = ["macros"] }
2023-12-03 14:46:05 +00:00
nanobyte_tera = { version = "0.2.0", registry = "gitea_nanobyte" }
ovlach_tera = { version="0.2.0", registry="gitea_ovlach" }
tracing = "0.1.40"
[dev-dependencies]
serde_json = "1.0.108"
2023-12-03 18:13:02 +00:00
wiremock = "0.5.22"
test-log = { version = "0.2.13", features = ["trace"], default-features = false}
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] }