bump witx dep to 0.8.5

This commit is contained in:
Pat Hickey
2020-04-06 13:40:40 -07:00
parent a9835186d4
commit 415b19f2d1
5 changed files with 12 additions and 54 deletions

58
Cargo.lock generated
View File

@@ -255,17 +255,6 @@ version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "chrono"
version = "0.4.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80094f509cf8b5ae86a4966a39b3ff66cd7e2a3e594accec3743ff3fabeab5b2"
dependencies = [
"num-integer",
"num-traits",
"time",
]
[[package]] [[package]]
name = "clap" name = "clap"
version = "2.33.0" version = "2.33.0"
@@ -557,7 +546,7 @@ dependencies = [
"file-per-thread-logger", "file-per-thread-logger",
"filecheck", "filecheck",
"indicatif", "indicatif",
"pretty_env_logger 0.4.0", "pretty_env_logger",
"serde", "serde",
"target-lexicon", "target-lexicon",
"term", "term",
@@ -1294,17 +1283,6 @@ version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" checksum = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"
[[package]]
name = "pretty_env_logger"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "717ee476b1690853d222af4634056d830b5197ffd747726a9a1eee6da9f49074"
dependencies = [
"chrono",
"env_logger 0.6.2",
"log",
]
[[package]] [[package]]
name = "pretty_env_logger" name = "pretty_env_logger"
version = "0.4.0" version = "0.4.0"
@@ -1945,7 +1923,7 @@ dependencies = [
"anyhow", "anyhow",
"cfg-if", "cfg-if",
"os_pipe", "os_pipe",
"pretty_env_logger 0.4.0", "pretty_env_logger",
"target-lexicon", "target-lexicon",
"tempfile", "tempfile",
"wasi-common", "wasi-common",
@@ -1992,17 +1970,6 @@ dependencies = [
"lazy_static", "lazy_static",
] ]
[[package]]
name = "time"
version = "0.1.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"
dependencies = [
"libc",
"redox_syscall",
"winapi",
]
[[package]] [[package]]
name = "toml" name = "toml"
version = "0.5.6" version = "0.5.6"
@@ -2145,7 +2112,7 @@ dependencies = [
"file-per-thread-logger", "file-per-thread-logger",
"lazy_static", "lazy_static",
"libc", "libc",
"pretty_env_logger 0.4.0", "pretty_env_logger",
"rayon", "rayon",
"region", "region",
"rustc-demangle", "rustc-demangle",
@@ -2192,7 +2159,7 @@ dependencies = [
"filecheck", "filecheck",
"libc", "libc",
"more-asserts", "more-asserts",
"pretty_env_logger 0.4.0", "pretty_env_logger",
"rayon", "rayon",
"structopt", "structopt",
"target-lexicon", "target-lexicon",
@@ -2244,7 +2211,7 @@ dependencies = [
"lightbeam", "lightbeam",
"log", "log",
"more-asserts", "more-asserts",
"pretty_env_logger 0.4.0", "pretty_env_logger",
"rand 0.7.3", "rand 0.7.3",
"rayon", "rayon",
"serde", "serde",
@@ -2397,15 +2364,6 @@ dependencies = [
"wast 11.0.0", "wast 11.0.0",
] ]
[[package]]
name = "wast"
version = "9.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee7b16105405ca2aa2376ba522d8d4b1a11604941dd3bb7df9fd2ece60f8d16a"
dependencies = [
"leb128",
]
[[package]] [[package]]
name = "wast" name = "wast"
version = "11.0.0" version = "11.0.0"
@@ -2526,15 +2484,15 @@ dependencies = [
[[package]] [[package]]
name = "witx" name = "witx"
version = "0.8.4" version = "0.8.5"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"diff", "diff",
"log", "log",
"pretty_env_logger 0.3.1", "pretty_env_logger",
"structopt", "structopt",
"thiserror", "thiserror",
"wast 9.0.0", "wast 11.0.0",
] ]
[[package]] [[package]]

View File

@@ -17,7 +17,7 @@ proc-macro = true
quote = "1.0.2" quote = "1.0.2"
proc-macro2 = "1.0.6" proc-macro2 = "1.0.6"
heck = "0.3.1" heck = "0.3.1"
witx = { path = "../WASI/tools/witx", version = "0.8.4" } witx = { path = "../WASI/tools/witx", version = "0.8.5" }
[badges] [badges]
maintenance = { status = "actively-developed" } maintenance = { status = "actively-developed" }

View File

@@ -12,7 +12,7 @@ include = ["src/**/*", "LICENSE"]
[dependencies] [dependencies]
thiserror = "1" thiserror = "1"
witx = { path = "../wasi-common/WASI/tools/witx", version = "0.8.4", optional = true } witx = { path = "../wasi-common/WASI/tools/witx", version = "0.8.5", optional = true }
wiggle-macro = { path = "macro", version = "0.15.0" } wiggle-macro = { path = "macro", version = "0.15.0" }
[badges] [badges]

View File

@@ -14,7 +14,7 @@ include = ["src/**/*", "LICENSE"]
[lib] [lib]
[dependencies] [dependencies]
witx = { version = "0.8.4", path = "../../wasi-common/WASI/tools/witx" } witx = { version = "0.8.5", path = "../../wasi-common/WASI/tools/witx" }
quote = "1.0" quote = "1.0"
proc-macro2 = "1.0" proc-macro2 = "1.0"
heck = "0.3" heck = "0.3"

View File

@@ -15,7 +15,7 @@ proc-macro = true
[dependencies] [dependencies]
wiggle-generate = { path = "../generate", version = "0.15.0" } wiggle-generate = { path = "../generate", version = "0.15.0" }
witx = { path = "../../wasi-common/WASI/tools/witx", version = "0.8.4" } witx = { path = "../../wasi-common/WASI/tools/witx", version = "0.8.5" }
syn = { version = "1.0", features = ["full"] } syn = { version = "1.0", features = ["full"] }
[dev-dependencies] [dev-dependencies]