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)
This commit is contained in:
Alex Crichton
2022-07-06 15:51:22 -05:00
committed by GitHub
parent b522171a68
commit b9745c05f8

View File

@@ -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"