diff --git a/Cargo.lock b/Cargo.lock index 68d8102..81d31ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1392,6 +1392,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" @@ -2105,9 +2115,9 @@ dependencies = [ [[package]] name = "octocrab" -version = "0.51.0" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb2ad8abffe4e2b05f9cdc7e061de63d305a6dca0af81ca1064a7d98e0b78267" +checksum = "85417c74d0350c730c329af964d2dea2c85caf297d75d6db5fd368f553ff364d" dependencies = [ "arc-swap", "async-trait", @@ -2122,6 +2132,7 @@ dependencies = [ "http", "http-body", "http-body-util", + "http-serde", "hyper", "hyper-rustls", "hyper-timeout", diff --git a/Cargo.toml b/Cargo.toml index 289638d..cc44d7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ indexmap = {version = "2.14.0", features = ["serde"] } jsonwebtoken = { version = "10.4.0", features = ["rust_crypto"] } k8s-openapi = { version = "0.27", default-features = false, features = ["latest"] } kube = { version = "3", default-features = false, features = ["runtime", "derive", "rustls-tls"] } -octocrab = "0.51.0" +octocrab = "0.52.0" reqwest = { version = "0.13.4", default-features = false, features = ["json", "stream"] } serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.150"