Merge pull request #3578 from bnjbvr/tidy-deps

Tidy up dependencies
This commit is contained in:
Chris Fallin
2021-12-01 08:43:45 -08:00
committed by GitHub
6 changed files with 3 additions and 13 deletions

5
Cargo.lock generated
View File

@@ -1445,7 +1445,6 @@ version = "0.1.0"
dependencies = [ dependencies = [
"env_logger 0.8.3", "env_logger 0.8.3",
"isle", "isle",
"log",
"miette", "miette",
"structopt", "structopt",
] ]
@@ -3163,7 +3162,6 @@ dependencies = [
"bitflags", "bitflags",
"cap-rand", "cap-rand",
"cap-std", "cap-std",
"io-lifetimes",
"rustix", "rustix",
"thiserror", "thiserror",
"tracing", "tracing",
@@ -3452,11 +3450,9 @@ dependencies = [
"humantime 2.1.0", "humantime 2.1.0",
"lazy_static", "lazy_static",
"libc", "libc",
"log",
"memchr", "memchr",
"more-asserts", "more-asserts",
"num_cpus", "num_cpus",
"object",
"pretty_env_logger", "pretty_env_logger",
"rayon", "rayon",
"rustix", "rustix",
@@ -3651,7 +3647,6 @@ name = "wasmtime-wasi-nn"
version = "0.31.0" version = "0.31.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"log",
"openvino", "openvino",
"thiserror", "thiserror",
"walkdir", "walkdir",

View File

@@ -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-crypto = { path = "crates/wasi-crypto", version = "0.31.0", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", 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"] } structopt = { version = "0.3.5", features = ["color", "suggestions"] }
object = { version = "0.27.0", default-features = false, features = ["write"] }
anyhow = "1.0.19" anyhow = "1.0.19"
target-lexicon = { version = "0.12.0", default-features = false } target-lexicon = { version = "0.12.0", default-features = false }
pretty_env_logger = "0.4.0" pretty_env_logger = "0.4.0"
file-per-thread-logger = "0.1.1" file-per-thread-logger = "0.1.1"
wat = "1.0.40"
libc = "0.2.60" libc = "0.2.60"
log = "0.4.8"
rayon = "1.5.0" rayon = "1.5.0"
humantime = "2.0.0" humantime = "2.0.0"
wasmparser = "0.81.0" wasmparser = "0.81.0"
@@ -62,6 +59,7 @@ num_cpus = "1.13.0"
winapi = { version = "0.3.9", features = ['memoryapi'] } winapi = { version = "0.3.9", features = ['memoryapi'] }
memchr = "2.4" memchr = "2.4"
async-trait = "0.1" async-trait = "0.1"
wat = "1.0.40"
[build-dependencies] [build-dependencies]
anyhow = "1.0.19" anyhow = "1.0.19"

View File

@@ -36,7 +36,7 @@ criterion = "0.3"
[build-dependencies] [build-dependencies]
cranelift-codegen-meta = { path = "meta", version = "0.78.0" } cranelift-codegen-meta = { path = "meta", version = "0.78.0" }
isle = { path = "../isle/isle", version = "0.78.0", optional = true } isle = { path = "../isle/isle", version = "0.78.0", optional = true }
miette = { version = "3", features = ["fancy"] } miette = { version = "3", features = ["fancy"], optional = true }
sha2 = "0.9.8" sha2 = "0.9.8"
[features] [features]
@@ -91,7 +91,7 @@ regalloc-snapshot = ["bincode", "regalloc/enable-serde"]
souper-harvest = ["souper-ir", "souper-ir/stringify"] souper-harvest = ["souper-ir", "souper-ir/stringify"]
# Recompile ISLE DSL source files into their generated Rust code. # Recompile ISLE DSL source files into their generated Rust code.
rebuild-isle = ["isle", "cranelift-codegen-meta/rebuild-isle"] rebuild-isle = ["isle", "miette", "cranelift-codegen-meta/rebuild-isle"]
# A hack to skip the ISLE-rebuild logic when testing for determinism # A hack to skip the ISLE-rebuild logic when testing for determinism
# with the "Meta deterministic check" CI job. # with the "Meta deterministic check" CI job.

View File

@@ -7,7 +7,6 @@ license = "Apache-2.0 WITH LLVM-exception"
publish = false publish = false
[dependencies] [dependencies]
log = "0.4"
isle = { version = "*", path = "../isle/" } isle = { version = "*", path = "../isle/" }
env_logger = { version = "0.8", default-features = false } env_logger = { version = "0.8", default-features = false }
miette = { version = "3.0.0", features = ["fancy"] } miette = { version = "3.0.0", features = ["fancy"] }

View File

@@ -25,7 +25,6 @@ tracing = "0.1.19"
cap-std = "0.21.1" cap-std = "0.21.1"
cap-rand = "0.21.1" cap-rand = "0.21.1"
bitflags = "1.2" bitflags = "1.2"
io-lifetimes = { version = "0.3.1", default-features = false }
[target.'cfg(unix)'.dependencies] [target.'cfg(unix)'.dependencies]
rustix = "0.26.2" rustix = "0.26.2"

View File

@@ -14,7 +14,6 @@ edition = "2018"
[dependencies] [dependencies]
# These dependencies are necessary for the witx-generation macros to work: # These dependencies are necessary for the witx-generation macros to work:
anyhow = "1.0" anyhow = "1.0"
log = { version = "0.4", default-features = false }
wiggle = { path = "../wiggle", version = "=0.31.0" } wiggle = { path = "../wiggle", version = "=0.31.0" }
# These dependencies are necessary for the wasi-nn implementation: # These dependencies are necessary for the wasi-nn implementation: