Files
scylladb/rust/wasmtime_bindings/Cargo.toml
Wojciech Mitros 6bc16047ba rust: update wasmtime dependency
The previous version of wasmtime had a vulnerability that possibly
allowed causing undefined behavior when calling UDFs.

We're directly updating to wasmtime 8.0.1, because the update only
requires a slight code modification and the Wasm UDF feature is
still experimental. As a result, we'll benefit from a number of
new optimizations.

Fixes #13807

Closes #13804
2023-05-16 13:03:29 +03:00

17 lines
406 B
TOML

[package]
name = "wasmtime_bindings"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cxx = { version = "1.0.83", features = ["c++20"] }
wasmtime-wasi = "8.0.1"
futures = "0.3.25"
anyhow = "1.0.66"
[dependencies.wasmtime]
version = "8.0.1"
default-features = false
features = ["async", "wat", "cranelift"]