Skip to content

Commit a0af0bd

Browse files
authored
Merge pull request #3 from katanemo/bring-main
Bring main up to proxy-wasm main
2 parents 3593b81 + c1b2101 commit a0af0bd

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139
with:
140140
repository: proxy-wasm/proxy-wasm-rust-sdk
141141
path: proxy-wasm-rust-sdk
142-
ref: v0.2.1
142+
ref: v0.2.2
143143

144144
- name: Update Rust
145145
run: |

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
wasmtime = "20.0.2"
10+
wasmtime = "23.0.1"
1111
anyhow = "1.0.72"
1212
lazy_static = "1.4.0"
1313
more-asserts = "0.3.1"

examples/http_auth_random.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ fn main() -> Result<()> {
4646
]),
4747
None,
4848
Some(vec![]),
49-
Some(5 * 10u64.pow(3)),
49+
Some(1 * 10u64.pow(3)),
5050
)
5151
.returning(Some(0))
5252
.execute_and_expect(ReturnType::Action(Action::Pause))?;

src/types.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ pub enum BufferType {
8888
DownstreamData = 2,
8989
UpstreamData = 3,
9090
HttpCallResponseBody = 4,
91+
GrpcReceiveBuffer = 5,
92+
VmConfiguration = 6,
93+
PluginConfiguration = 7,
9194
}
9295

9396
#[repr(u32)]

0 commit comments

Comments
 (0)