1[package] 2authors = ["The Wasmtime Project Developers"] 3description = "A Rust-to-OCaml wrapper for the WebAssembly specification interpreter" 4name = "wasm-spec-interpreter" 5version = "0.0.0" 6publish = false 7edition.workspace = true 8rust-version.workspace = true 9license = "Apache-2.0 WITH LLVM-exception" 10 11[lints] 12workspace = true 13 14# Until https://gitlab.com/ocaml-rust/ocaml-boxroot/-/issues/1 is resolved and 15# this crate can use the `without-ocamlopt` feature to avoid build failures, it 16# is better to only build the OCaml dependencies when fuzzing (see the 17# `build-libinterpret` feature set by this crate's parent). 18[dependencies] 19ocaml-interop = { version = "0.8", optional = true } 20 21[dev-dependencies] 22wat = { workspace = true } 23 24[features] 25build-libinterpret = ["ocaml-interop"] 26