proxy-wasm / proxy-wasm-cpp-host

WebAssembly for Proxies (C++ host implementation)
Apache License 2.0
84 stars 69 forks source link

Update rules_rust to v0.19.0 (with Rust v1.68.0). #334

Closed RiverPhillips closed 1 year ago

PiotrSikora commented 1 year ago

The V8 failure is due to the internal function name change, you can fix it by changing:

host->isErrorLogged(" - rust_oom")

to

host->isErrorLogged("rust_oom")

in test/runtime_test.cc at line 145.