diff --git a/Cargo.lock b/Cargo.lock index 804fea1910..407c418ab1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1445,7 +1445,6 @@ version = "0.1.0" dependencies = [ "env_logger 0.8.3", "isle", - "log", "miette", "structopt", ] @@ -3163,7 +3162,6 @@ dependencies = [ "bitflags", "cap-rand", "cap-std", - "io-lifetimes", "rustix", "thiserror", "tracing", @@ -3452,11 +3450,9 @@ dependencies = [ "humantime 2.1.0", "lazy_static", "libc", - "log", "memchr", "more-asserts", "num_cpus", - "object", "pretty_env_logger", "rayon", "rustix", @@ -3651,7 +3647,6 @@ name = "wasmtime-wasi-nn" version = "0.31.0" dependencies = [ "anyhow", - "log", "openvino", "thiserror", "walkdir", diff --git a/Cargo.toml b/Cargo.toml index 0dc3964444..75768e44fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,14 +30,11 @@ wasmtime-wasi = { path = "crates/wasi", version = "0.31.0" } wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.31.0", optional = true } wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.31.0", optional = true } structopt = { version = "0.3.5", features = ["color", "suggestions"] } -object = { version = "0.27.0", default-features = false, features = ["write"] } anyhow = "1.0.19" target-lexicon = { version = "0.12.0", default-features = false } pretty_env_logger = "0.4.0" file-per-thread-logger = "0.1.1" -wat = "1.0.40" libc = "0.2.60" -log = "0.4.8" rayon = "1.5.0" humantime = "2.0.0" wasmparser = "0.81.0" @@ -62,6 +59,7 @@ num_cpus = "1.13.0" winapi = { version = "0.3.9", features = ['memoryapi'] } memchr = "2.4" async-trait = "0.1" +wat = "1.0.40" [build-dependencies] anyhow = "1.0.19" diff --git a/cranelift/isle/islec/Cargo.toml b/cranelift/isle/islec/Cargo.toml index 3a6ab3d115..702c1ab1ad 100644 --- a/cranelift/isle/islec/Cargo.toml +++ b/cranelift/isle/islec/Cargo.toml @@ -7,7 +7,6 @@ license = "Apache-2.0 WITH LLVM-exception" publish = false [dependencies] -log = "0.4" isle = { version = "*", path = "../isle/" } env_logger = { version = "0.8", default-features = false } miette = { version = "3.0.0", features = ["fancy"] } diff --git a/crates/wasi-common/Cargo.toml b/crates/wasi-common/Cargo.toml index b4741929a3..98b09e8cac 100644 --- a/crates/wasi-common/Cargo.toml +++ b/crates/wasi-common/Cargo.toml @@ -25,7 +25,6 @@ tracing = "0.1.19" cap-std = "0.21.1" cap-rand = "0.21.1" bitflags = "1.2" -io-lifetimes = { version = "0.3.1", default-features = false } [target.'cfg(unix)'.dependencies] rustix = "0.26.2" diff --git a/crates/wasi-nn/Cargo.toml b/crates/wasi-nn/Cargo.toml index 8b0385c677..1cb7672620 100644 --- a/crates/wasi-nn/Cargo.toml +++ b/crates/wasi-nn/Cargo.toml @@ -14,7 +14,6 @@ edition = "2018" [dependencies] # These dependencies are necessary for the witx-generation macros to work: anyhow = "1.0" -log = { version = "0.4", default-features = false } wiggle = { path = "../wiggle", version = "=0.31.0" } # These dependencies are necessary for the wasi-nn implementation: