From f9a17cc9825dfe9db935a3185ad274247f198d27 Mon Sep 17 00:00:00 2001 From: Ahmed Adam Date: Mon, 12 Feb 2024 09:11:58 +0000 Subject: [PATCH 1/3] Add additional buffer types Signed-off-by: Ahmed Adam --- src/types.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/types.rs b/src/types.rs index 7921713..72f0874 100644 --- a/src/types.rs +++ b/src/types.rs @@ -88,6 +88,9 @@ pub enum BufferType { DownstreamData = 2, UpstreamData = 3, HttpCallResponseBody = 4, + GrpcReceiveBuffer = 5, + VmConfiguration = 6, + PluginConfiguration = 7, } #[repr(u32)] From 8b3d71e61432769026729f4465daa19b588faf7a Mon Sep 17 00:00:00 2001 From: Ahmed Adam Date: Thu, 18 Jul 2024 09:06:15 +0100 Subject: [PATCH 2/3] Bump wasmtime to 22.0.0 Signed-off-by: Ahmed Adam --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 564263a..0427c0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wasmtime = "11.0.1" +wasmtime = "22.0.0" anyhow = "1.0.72" lazy_static = "1.4.0" more-asserts = "0.3.1" From d20745f4aba0ed4112cba14ee34c088010a71a95 Mon Sep 17 00:00:00 2001 From: Ahmed Adam Date: Tue, 23 Jul 2024 14:35:27 +0100 Subject: [PATCH 3/3] Revert "Bump wasmtime to 22.0.0" This reverts commit 8b3d71e61432769026729f4465daa19b588faf7a. Signed-off-by: Ahmed Adam --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0427c0b..564263a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wasmtime = "22.0.0" +wasmtime = "11.0.1" anyhow = "1.0.72" lazy_static = "1.4.0" more-asserts = "0.3.1"