diff --git a/Cargo.lock b/Cargo.lock index f317c06..d52dec4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2388,8 +2388,8 @@ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" [[package]] name = "review-protocol" -version = "0.19.0" -source = "git+https://github.com/aicers/review-protocol.git?rev=b0eae25#b0eae25cb4b559b92548fdde0320df533a12e774" +version = "0.20.0" +source = "git+https://github.com/aicers/review-protocol.git?rev=32ed9b0#32ed9b09be4a5edf98338a47aa1f75daf66a2f9d" dependencies = [ "anyhow", "async-trait", @@ -3160,6 +3160,7 @@ version = "1.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed" dependencies = [ + "bytes", "libc", "mio", "pin-project-lite", diff --git a/Cargo.toml b/Cargo.toml index 354cb79..5ec9af8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ nix = { version = "0.31", features = ["reboot", "fs"] } pnet = { version = "0.35", features = ["pnet_datalink", "std"] } quinn = { version = "0.11", default-features = false } regex = "1.11" -review-protocol = { git = "https://github.com/aicers/review-protocol.git", rev = "b0eae25", features = [ +review-protocol = { git = "https://github.com/aicers/review-protocol.git", rev = "32ed9b0", features = [ "client", ] } serde = { version = "1", features = ["derive"] } @@ -37,7 +37,7 @@ uptime_lib = "0.3" [dev-dependencies] quinn = { version = "0.11", features = ["ring", "runtime-tokio"] } rcgen = "0.14" -review-protocol = { git = "https://github.com/aicers/review-protocol.git", rev = "b0eae25", features = [ +review-protocol = { git = "https://github.com/aicers/review-protocol.git", rev = "32ed9b0", features = [ "server", ] } rustls = { version = "0.23", features = ["ring"] }