Path: blob/main/crates/fuzzing/wasm-spec-interpreter/Cargo.toml
1692 views
[package]1authors = ["The Wasmtime Project Developers"]2description = "A Rust-to-OCaml wrapper for the WebAssembly specification interpreter"3name = "wasm-spec-interpreter"4version = "0.0.0"5publish = false6edition.workspace = true7rust-version.workspace = true8license = "Apache-2.0 WITH LLVM-exception"910[lints]11workspace = true1213# Until https://gitlab.com/ocaml-rust/ocaml-boxroot/-/issues/1 is resolved and14# this crate can use the `without-ocamlopt` feature to avoid build failures, it15# is better to only build the OCaml dependencies when fuzzing (see the16# `build-libinterpret` feature set by this crate's parent).17[dependencies]18ocaml-interop = { version = "0.8", optional = true }1920[dev-dependencies]21wat = { workspace = true }2223[features]24build-libinterpret = ["ocaml-interop"]252627