Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/fuzzing/wasm-spec-interpreter/Cargo.toml
1692 views
1
[package]
2
authors = ["The Wasmtime Project Developers"]
3
description = "A Rust-to-OCaml wrapper for the WebAssembly specification interpreter"
4
name = "wasm-spec-interpreter"
5
version = "0.0.0"
6
publish = false
7
edition.workspace = true
8
rust-version.workspace = true
9
license = "Apache-2.0 WITH LLVM-exception"
10
11
[lints]
12
workspace = 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]
19
ocaml-interop = { version = "0.8", optional = true }
20
21
[dev-dependencies]
22
wat = { workspace = true }
23
24
[features]
25
build-libinterpret = ["ocaml-interop"]
26
27