diff --git a/Cargo.lock b/Cargo.lock index 87cf9bc..d0bc1a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -674,6 +674,16 @@ version = "2.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8" +[[package]] +name = "iri-string" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21859b667d66a4c1dacd9df0863b3efb65785474255face87f5bca39dd8407c0" +dependencies = [ + "memchr", + "serde", +] + [[package]] name = "itoa" version = "1.0.6" @@ -837,9 +847,9 @@ dependencies = [ [[package]] name = "octocrab" -version = "0.31.1" +version = "0.31.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4aaba1d81f0a75db85fa78fd78d1d083ff99400959ac956273b97fbb6582dae5" +checksum = "b7968954c85c6aead36c45d265898de6feccf7cd23ff7ced9df41ef8fbe414e2" dependencies = [ "arc-swap", "async-trait", @@ -1536,7 +1546,9 @@ dependencies = [ "http", "http-body", "http-range-header", + "iri-string", "pin-project-lite", + "tower", "tower-layer", "tower-service", "tracing", diff --git a/Cargo.toml b/Cargo.toml index 1e94937..4771160 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ anyhow = "1.0.75" async-trait = "0.1.74" base64 = "0.21.4" clap = { version = "4.4.6", optional = true, features = ["derive"] } -octocrab = "0.31.1" +octocrab = "0.31.2" serde = { version = "1.0.189", optional = true, features = ["derive"] } serde_yaml = { version = "0.9.25", optional = true } thiserror = "1.0.49"