-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
authors = ["piprett"]
description = "A robust service to fetch Norwegian electricity prices"
edition = "2024"
license = "MPL-2.0"
name = "strompriser"
publish = false
readme = "README.md"
repository = "https://github.com/piprett/strompriser"
version = "0.1.3"
[dependencies]
async-trait = "0.1.89"
axum = {version = "0.8.8", features = ["macros"]}
bon = "3.9.0"
chrono = {version = "0.4.43", features = ["serde"]}
# filter-by-regex to reduce size, see .cargo/config.toml
chrono-tz = {version = "0.10.4", default-features = false, features = ["filter-by-regex"]}
clap = {version = "4.5.60", features = ["derive", "env"]}
dotenvy = "0.15.7"
quick-xml = {version = "0.39.2", features = ["serialize"]}
reqwest = {version = "0.13.2", features = ["json"]}
serde = {version = "1.0.228", features = ["derive"]}
serde_json = "1.0.149"
thiserror = "2.0.18"
tokio = {version = "1.49.0", features = ["full"]}
tower = "0.5.3"
tracing = "0.1.44"
tracing-subscriber = "0.3.22"
[dev-dependencies]
googletest = "0.14.2"
wiremock = "0.6.5"