Skip to content

Commit 860f3f7

Browse files
authored
chore: metrics endpoint variables renamed from HTTP_SERVER->SYSTEM (#1934)
Co-authored-by: Keiven Chang <keivenchang@users.noreply.github.com>
1 parent fc402a3 commit 860f3f7

File tree

5 files changed

+306
-92
lines changed

5 files changed

+306
-92
lines changed

Cargo.lock

Lines changed: 108 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/runtime/Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,13 @@ socket2 = { version = "0.5.8" }
7777
[dev-dependencies]
7878
assert_matches = { version = "1.5.0" }
7979
env_logger = { version = "0.11" }
80+
reqwest = { version = "0.12.22", features = ["json"] }
8081
rstest = { version = "0.23.0" }
8182
temp-env = { version = "0.3.6" }
83+
84+
# These patches are to address issues in reqwest, which is used in the HTTP server test (but not on servers).
85+
# These are transitive dependencies to use secure versions and mitigate known vulnerabilities.
86+
[patch.crates-io]
87+
tokio = { version = "1.18.4" } # addresses RUSTSEC-2023-0001
88+
h2 = { version = "0.4.4" } # addresses RUSTSEC-2024-0332
89+
rustls = { version = "0.23.18" } # addresses RUSTSEC-2024-0399

0 commit comments

Comments
 (0)