Browse Source

Disable tests for `wasmtime-bench-api` (#4395)

Additionally remove the `rlib` crate type so it's possible to build the
API with LTO options if configured (otherwise Cargo ignores LTO
configuration with an `rlib` output since it would hit an error in
rustc)
pull/4397/head
Alex Crichton 2 years ago
committed by GitHub
parent
commit
b9745c05f8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      crates/bench-api/Cargo.toml

5
crates/bench-api/Cargo.toml

@ -11,8 +11,9 @@ publish = false
[lib]
name = "wasmtime_bench_api"
crate-type = ["rlib", "cdylib"]
# The rlib is only included here so that `cargo test` will run.
crate-type = ["cdylib"]
test = false
doctest = false
[dependencies]
anyhow = "1.0"

Loading…
Cancel
Save