Remove unused dependencies (#3490)

* Remove unused dependencies in Cranelift

* add serde to the current workspace

* remove more unused dependencies in wasmtime?
This commit is contained in:
Benjamin Bouvier
2021-11-02 18:08:30 +01:00
committed by GitHub
parent b024603866
commit c952969389
18 changed files with 2 additions and 59 deletions

View File

@@ -27,7 +27,6 @@ wasmtime-c-api-macros = { path = "macros" }
wat = { version = "1.0.36", optional = true }
# Optional dependencies for the `wasi` feature
wasi-common = { path = "../wasi-common", optional = true }
wasi-cap-std-sync = { path = "../wasi-common/cap-std-sync", optional = true }
wasmtime-wasi = { path = "../wasi", optional = true }
cap-std = { version = "0.19.1", optional = true }
@@ -36,4 +35,4 @@ cap-std = { version = "0.19.1", optional = true }
default = ['jitdump', 'wat', 'wasi', 'cache']
jitdump = ["wasmtime/jitdump"]
cache = ["wasmtime/cache"]
wasi = ['wasi-common', 'wasi-cap-std-sync', 'wasmtime-wasi', 'cap-std']
wasi = ['wasi-cap-std-sync', 'wasmtime-wasi', 'cap-std']