Skip to content

Commit 32956ae

Browse files
authored
Merge branch 'main' into dev-panic
2 parents dd95881 + 50229a2 commit 32956ae

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "proxy-wasm"
3-
version = "0.2.3"
3+
version = "0.2.4-dev"
44
authors = ["Piotr Sikora <[email protected]>"]
55
rust-version = "1.65"
66
description = "WebAssembly for Proxies"

bazel/cargo/Cargo.Bazel.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
3939

4040
[[package]]
4141
name = "proxy-wasm"
42-
version = "0.2.3"
42+
version = "0.2.4-dev"
4343
dependencies = [
4444
"hashbrown",
4545
"log",

bazel/cargo/remote/BUILD.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ alias(
5656
)
5757

5858
alias(
59-
name = "proxy-wasm-0.2.3",
60-
actual = "@crates_vendor__proxy-wasm-0.2.3//:proxy_wasm",
59+
name = "proxy-wasm-0.2.4-dev",
60+
actual = "@crates_vendor__proxy-wasm-0.2.4-dev//:proxy_wasm",
6161
tags = ["manual"],
6262
)
6363

6464
alias(
6565
name = "proxy-wasm",
66-
actual = "@crates_vendor__proxy-wasm-0.2.3//:proxy_wasm",
66+
actual = "@crates_vendor__proxy-wasm-0.2.4-dev//:proxy_wasm",
6767
tags = ["manual"],
6868
)

examples/grpc_auth_random/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ impl HttpContext for GrpcAuthRandom {
6868

6969
impl Context for GrpcAuthRandom {
7070
fn on_grpc_call_response(&mut self, _: u32, status_code: u32, _: usize) {
71+
#[allow(unknown_lints, clippy::manual_is_multiple_of)]
7172
if status_code % 2 == 0 {
7273
info!("Access granted.");
7374
self.resume_http_request();

examples/http_auth_random/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ impl HttpContext for HttpAuthRandom {
5050
impl Context for HttpAuthRandom {
5151
fn on_http_call_response(&mut self, _: u32, _: usize, body_size: usize, _: usize) {
5252
if let Some(body) = self.get_http_call_response_body(0, body_size) {
53+
#[allow(unknown_lints, clippy::manual_is_multiple_of)]
5354
if !body.is_empty() && body[0] % 2 == 0 {
5455
info!("Access granted.");
5556
self.resume_http_request();

0 commit comments

Comments
 (0)