1
0
mirror of https://github.com/pcvolkmer/checkbar.git synced 2025-07-02 06:22:53 +00:00

Use http crate instead of hyper crate for tests

This commit is contained in:
2023-12-09 13:48:04 +01:00
parent 4eb609c9b5
commit 8ff43775aa
4 changed files with 163 additions and 178 deletions

View File

@ -13,14 +13,14 @@ dirs = "5.0"
reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "*"
tokio = { version = "1.33", features = ["macros", "rt-multi-thread"] }
toml = "0.8.2"
serde_repr = "0.1"
tokio = { version = "1.35", features = ["macros", "rt-multi-thread"] }
toml = "0.8.8"
parse_duration = { path = "./parse_duration" }
[dev-dependencies]
hyper = "*"
http = "0.2"
serde_derive = "1.0"
[profile.release]