diff --git a/Cargo.lock b/Cargo.lock index d7b13fdb..00a3db2c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1282,6 +1282,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" @@ -1841,9 +1851,9 @@ dependencies = [ [[package]] name = "octocrab" -version = "0.49.7" +version = "0.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63f6687a23731011d0117f9f4c3cdabaa7b5e42ca671f42b5cc0657c492540e3" +checksum = "46a4184473c1d00a892dad5259e1d19421ab1f8e4b7d714113a6cfdb213d9980" dependencies = [ "arc-swap", "async-trait", @@ -1852,7 +1862,6 @@ dependencies = [ "cargo_metadata", "cfg-if", "chrono", - "either", "futures", "futures-core", "futures-util", @@ -1860,6 +1869,7 @@ dependencies = [ "http", "http-body", "http-body-util", + "http-serde", "hyper", "hyper-rustls", "hyper-timeout", diff --git a/Cargo.toml b/Cargo.toml index 854f3a2e..6a4906f6 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.53", features = ["timeout", "stream"] } # Async futures = "0.3"