diff --git a/Cargo.lock b/Cargo.lock index f464afc1..79e7c15a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1358,6 +1358,16 @@ dependencies = [ "pin-project-lite", ] +[[package]] +name = "http-serde" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f056c8559e3757392c8d091e796416e4649d8e49e88b8d76df6c002f05027fd" +dependencies = [ + "http", + "serde", +] + [[package]] name = "httparse" version = "1.10.1" @@ -1926,9 +1936,9 @@ dependencies = [ [[package]] name = "octocrab" -version = "0.49.7" +version = "0.54.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63f6687a23731011d0117f9f4c3cdabaa7b5e42ca671f42b5cc0657c492540e3" +checksum = "27be39870c558e1fbc5a5f8d4a29aa916268c1dbcb9d467f2a9bbab35598060e" dependencies = [ "arc-swap", "async-trait", @@ -1937,7 +1947,6 @@ dependencies = [ "cargo_metadata", "cfg-if", "chrono", - "either", "futures", "futures-core", "futures-util", @@ -1945,12 +1954,12 @@ dependencies = [ "http", "http-body", "http-body-util", + "http-serde", "hyper", "hyper-rustls", "hyper-timeout", "hyper-util", "jsonwebtoken", - "once_cell", "percent-encoding", "pin-project", "secrecy", diff --git a/Cargo.toml b/Cargo.toml index f97c1b76..42d98bd3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ toml = "1.0" rust_team_data = { git = "https://github.com/rust-lang/team" } # GitHub -octocrab = { version = "0.49", features = ["timeout", "stream"] } +octocrab = { version = "0.54", features = ["timeout", "stream"] } # Async futures = "0.3"