From c73a92ba1ebe235d085e457109e7569da6246658 Mon Sep 17 00:00:00 2001 From: Jake Goulding Date: Sun, 24 Nov 2024 15:33:38 -0500 Subject: [PATCH] Upgrade to octocrab 0.42 --- ui/Cargo.lock | 18 ++++++++++++++++-- ui/Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/ui/Cargo.lock b/ui/Cargo.lock index 64e9b03e..b11501b0 100644 --- a/ui/Cargo.lock +++ b/ui/Cargo.lock @@ -259,8 +259,10 @@ checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" dependencies = [ "android-tzdata", "iana-time-zone", + "js-sys", "num-traits", "serde", + "wasm-bindgen", "windows-targets", ] @@ -1129,9 +1131,9 @@ dependencies = [ [[package]] name = "octocrab" -version = "0.41.2" +version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2dfd11f6efbd39491d71a3864496f0b6f45e2d01b73b26c55d631c4e0dafaef" +checksum = "7b97f949a7cb04608441c2ddb28e15a377e8b5142c2d1835ad2686d434de8558" dependencies = [ "arc-swap", "async-trait", @@ -1164,6 +1166,7 @@ dependencies = [ "tower-http", "tracing", "url", + "web-time", ] [[package]] @@ -2351,6 +2354,17 @@ version = "0.2.95" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" +[[package]] +name = "web-time" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +dependencies = [ + "js-sys", + "serde", + "wasm-bindgen", +] + [[package]] name = "winapi" version = "0.3.9" diff --git a/ui/Cargo.toml b/ui/Cargo.toml index 2db961c4..5f128db5 100644 --- a/ui/Cargo.toml +++ b/ui/Cargo.toml @@ -15,7 +15,7 @@ axum = { version = "0.7", features = ["ws"] } axum-extra = { version = "0.9.0", features = ["typed-header"] } dotenv = "0.15.0" futures = "0.3.21" -octocrab = "0.41" +octocrab = "0.42" openssl-probe = "0.1.2" orchestrator = { path = "../compiler/base/orchestrator" } prometheus = "0.13.0"