Merge pull request 'fix(deps): update rust crate actix-web-prom to 0.8.0' (#14) from renovate/actix-web-prom-0.x into master
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending

Reviewed-on: #14
This commit is contained in:
Aravinth Manivannan 2024-06-08 13:15:55 +05:30
commit 8aa20caa5f
2 changed files with 12 additions and 3 deletions

13
Cargo.lock generated
View file

@ -213,14 +213,17 @@ dependencies = [
[[package]] [[package]]
name = "actix-web-prom" name = "actix-web-prom"
version = "0.6.0" version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9df3127d20a5d01c9fc9aceb969a38d31a6767e1b48a54d55a8f56c769a84923" checksum = "76743e67d4e7efa9fc2ac7123de0dd7b2ca592668e19334f1d81a3b077afc6ac"
dependencies = [ dependencies = [
"actix-web", "actix-web",
"futures-core", "futures-core",
"log",
"pin-project-lite", "pin-project-lite",
"prometheus", "prometheus",
"regex",
"strfmt",
] ]
[[package]] [[package]]
@ -2836,6 +2839,12 @@ dependencies = [
"url", "url",
] ]
[[package]]
name = "strfmt"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a8348af2d9fc3258c8733b8d9d8db2e56f54b2363a4b5b81585c7875ed65e65"
[[package]] [[package]]
name = "stringprep" name = "stringprep"
version = "0.1.3" version = "0.1.3"

View file

@ -21,7 +21,7 @@ path = "./src/complaince/validator.rs"
[dependencies] [dependencies]
reqwest = { version = "0.11.20", features = ["json", "gzip"] } reqwest = { version = "0.11.20", features = ["json", "gzip"] }
actix-web = "4" actix-web = "4"
actix-web-prom = "0.6.0" actix-web-prom = "0.8.0"
futures-util = { version = "0.3.17", default-features = false, features = ["std"] } futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
lazy_static = "1.4.0" lazy_static = "1.4.0"
log = "0.4.17" log = "0.4.17"