From fde5ddf159ed483155be2b18d6d6e9902eb9acc2 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 3 Apr 2020 13:13:37 -0700 Subject: [PATCH] Fixes for 0.15 (#1449) * Wasmtime 0.15.0 and Cranelift 0.62.0. (#1398) * Bump more ad-hoc versions. * Add build.rs to wasi-common's Cargo.toml. * Update the env var name in more places. * Remove a redundant echo. --- Cargo.lock | 143 +++++++++++---------- Cargo.toml | 20 +-- cranelift/Cargo.toml | 30 ++--- cranelift/bforest/Cargo.toml | 4 +- cranelift/codegen/Cargo.toml | 10 +- cranelift/codegen/meta/Cargo.toml | 6 +- cranelift/codegen/shared/Cargo.toml | 2 +- cranelift/entity/Cargo.toml | 2 +- cranelift/faerie/Cargo.toml | 6 +- cranelift/filetests/Cargo.toml | 10 +- cranelift/frontend/Cargo.toml | 4 +- cranelift/module/Cargo.toml | 6 +- cranelift/native/Cargo.toml | 4 +- cranelift/object/Cargo.toml | 6 +- cranelift/preopt/Cargo.toml | 6 +- cranelift/reader/Cargo.toml | 4 +- cranelift/serde/Cargo.toml | 6 +- cranelift/simplejit/Cargo.toml | 14 +- cranelift/umbrella/Cargo.toml | 6 +- cranelift/wasm/Cargo.toml | 8 +- crates/api/Cargo.toml | 12 +- crates/c-api/Cargo.toml | 2 +- crates/c-api/macros/Cargo.toml | 2 +- crates/debug/Cargo.toml | 4 +- crates/environ/Cargo.toml | 12 +- crates/fuzzing/Cargo.toml | 4 +- crates/jit/Cargo.toml | 20 +-- crates/lightbeam/Cargo.toml | 4 +- crates/misc/run-examples/Cargo.toml | 2 +- crates/misc/rust/Cargo.toml | 8 +- crates/misc/rust/macro/Cargo.toml | 2 +- crates/obj/Cargo.toml | 4 +- crates/profiling/Cargo.toml | 6 +- crates/runtime/Cargo.toml | 4 +- crates/test-programs/Cargo.toml | 8 +- crates/test-programs/wasi-tests/Cargo.lock | 2 +- crates/test-programs/wasi-tests/Cargo.toml | 2 +- crates/wasi-common/Cargo.toml | 16 +-- crates/wasi-common/wig/Cargo.toml | 2 +- crates/wasi-common/winx/Cargo.toml | 2 +- crates/wasi-common/yanix/Cargo.toml | 2 +- crates/wasi/Cargo.toml | 12 +- crates/wasi/build.rs | 2 +- crates/wast/Cargo.toml | 4 +- crates/wiggle/Cargo.toml | 4 +- crates/wiggle/generate/Cargo.toml | 2 +- crates/wiggle/macro/Cargo.toml | 4 +- crates/wiggle/test-helpers/Cargo.toml | 2 +- scripts/bump-cranelift-version.sh | 2 +- scripts/bump-wasmtime-version.sh | 2 +- scripts/publish-wasmtime.sh | 2 +- 51 files changed, 231 insertions(+), 222 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5859533f3c3..d44d18fccc0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -44,9 +44,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.27" +version = "1.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "013a6e0a2cbe3d20f9c60b65458f7a7f7a5e636c5d0f45a5a6aee5d4b1f01785" +checksum = "d9a60d744a80c30fcb657dfe2c1b22bcb3e814c1a1e3674f32bf5820b570fbff" [[package]] name = "arbitrary" @@ -365,7 +365,7 @@ dependencies = [ [[package]] name = "cranelift" -version = "0.61.0" +version = "0.62.0" dependencies = [ "cranelift-codegen", "cranelift-frontend", @@ -373,14 +373,14 @@ dependencies = [ [[package]] name = "cranelift-bforest" -version = "0.61.0" +version = "0.62.0" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-codegen" -version = "0.61.0" +version = "0.62.0" dependencies = [ "byteorder", "cranelift-bforest", @@ -398,7 +398,7 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.61.0" +version = "0.62.0" dependencies = [ "cranelift-codegen-shared", "cranelift-entity", @@ -406,18 +406,18 @@ dependencies = [ [[package]] name = "cranelift-codegen-shared" -version = "0.61.0" +version = "0.62.0" [[package]] name = "cranelift-entity" -version = "0.61.0" +version = "0.62.0" dependencies = [ "serde", ] [[package]] name = "cranelift-faerie" -version = "0.61.0" +version = "0.62.0" dependencies = [ "anyhow", "cranelift-codegen", @@ -429,7 +429,7 @@ dependencies = [ [[package]] name = "cranelift-filetests" -version = "0.61.0" +version = "0.62.0" dependencies = [ "byteorder", "cranelift-codegen", @@ -447,7 +447,7 @@ dependencies = [ [[package]] name = "cranelift-frontend" -version = "0.61.0" +version = "0.62.0" dependencies = [ "cranelift-codegen", "hashbrown 0.7.1", @@ -458,7 +458,7 @@ dependencies = [ [[package]] name = "cranelift-module" -version = "0.61.0" +version = "0.62.0" dependencies = [ "anyhow", "cranelift-codegen", @@ -470,7 +470,7 @@ dependencies = [ [[package]] name = "cranelift-native" -version = "0.61.0" +version = "0.62.0" dependencies = [ "cranelift-codegen", "raw-cpuid", @@ -479,7 +479,7 @@ dependencies = [ [[package]] name = "cranelift-object" -version = "0.61.0" +version = "0.62.0" dependencies = [ "cranelift-codegen", "cranelift-module", @@ -489,7 +489,7 @@ dependencies = [ [[package]] name = "cranelift-preopt" -version = "0.61.0" +version = "0.62.0" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -497,7 +497,7 @@ dependencies = [ [[package]] name = "cranelift-reader" -version = "0.61.0" +version = "0.62.0" dependencies = [ "cranelift-codegen", "target-lexicon", @@ -505,7 +505,7 @@ dependencies = [ [[package]] name = "cranelift-serde" -version = "0.61.0" +version = "0.62.0" dependencies = [ "clap", "cranelift-codegen", @@ -517,7 +517,7 @@ dependencies = [ [[package]] name = "cranelift-simplejit" -version = "0.61.0" +version = "0.62.0" dependencies = [ "cranelift", "cranelift-codegen", @@ -535,7 +535,7 @@ dependencies = [ [[package]] name = "cranelift-tools" -version = "0.61.0" +version = "0.62.0" dependencies = [ "capstone", "cfg-if", @@ -567,7 +567,7 @@ dependencies = [ [[package]] name = "cranelift-wasm" -version = "0.61.0" +version = "0.62.0" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -769,9 +769,9 @@ dependencies = [ [[package]] name = "errno" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2a071601ed01b988f896ab14b95e67335d1eeb50190932a1320f7fe3cadc84e" +checksum = "b480f641ccf0faf324e20c1d3e53d81b7484c698b42ea677f6907ae4db195371" dependencies = [ "errno-dragonfly", "libc", @@ -845,9 +845,9 @@ dependencies = [ [[package]] name = "filetime" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ff6d4dab0aa0c8e6346d46052e93b13a16cf847b54ed357087c35011048cc7d" +checksum = "f59efc38004c988e4201d11d263b8171f49a2e7ec0bdbb71773433f271504a5e" dependencies = [ "cfg-if", "libc", @@ -967,9 +967,9 @@ dependencies = [ [[package]] name = "hermit-abi" -version = "0.1.8" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8" +checksum = "725cf19794cf90aa94e65050cb4191ff5d8fa87a498383774c47b332e3af952e" dependencies = [ "libc", ] @@ -1067,7 +1067,7 @@ dependencies = [ [[package]] name = "lightbeam" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "capstone", @@ -1343,15 +1343,15 @@ dependencies = [ [[package]] name = "proc-macro-hack" -version = "0.5.14" +version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcfdefadc3d57ca21cf17990a28ef4c0f7c61383a28cb7604cf4a18e6ede1420" +checksum = "0d659fe7c6d27f25e9d80a1a094c223f5246f6a6596453e09d7229bf42750b63" [[package]] name = "proc-macro2" -version = "1.0.9" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435" +checksum = "df246d292ff63439fea9bc8c0a270bed0e390d5ebd4db4ba15aba81111b5abe3" dependencies = [ "unicode-xid", ] @@ -1662,7 +1662,7 @@ dependencies = [ [[package]] name = "run-examples" -version = "0.14.0" +version = "0.15.0" dependencies = [ "cc", ] @@ -1784,9 +1784,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.48" +version = "1.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9371ade75d4c2d6cb154141b9752cf3781ec9c05e0e5cf35060e1e70ee7b9c25" +checksum = "78a7a12c167809363ec3bd7329fc0a3369056996de43c4b37ef3cd54a6ce4867" dependencies = [ "itoa", "ryu", @@ -1940,7 +1940,7 @@ dependencies = [ [[package]] name = "test-programs" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "cfg-if", @@ -1965,18 +1965,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.13" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3711fd1c4e75b3eff12ba5c40dba762b6b65c5476e8174c1a664772060c49bf" +checksum = "f0570dc61221295909abdb95c739f2e74325e14293b2026b0a7e195091ec54ae" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.13" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae2b85ba4c9aa32dd3343bd80eb8d22e9b54b7688c17ea3907f236885353b233" +checksum = "227362df41d566be41a28f64401e07a043157c21c14b9785a0d8e256f940a8fd" dependencies = [ "proc-macro2", "quote", @@ -2100,7 +2100,7 @@ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" [[package]] name = "wasi-common" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "cfg-if", @@ -2137,7 +2137,7 @@ dependencies = [ [[package]] name = "wasmtime" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "backtrace", @@ -2163,7 +2163,7 @@ dependencies = [ [[package]] name = "wasmtime-c-api" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "once_cell", @@ -2176,7 +2176,7 @@ dependencies = [ [[package]] name = "wasmtime-c-api-macros" -version = "0.1.0" +version = "0.15.0" dependencies = [ "proc-macro2", "quote", @@ -2184,7 +2184,7 @@ dependencies = [ [[package]] name = "wasmtime-cli" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "faerie", @@ -2212,7 +2212,7 @@ dependencies = [ [[package]] name = "wasmtime-debug" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "faerie", @@ -2226,7 +2226,7 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "base64 0.12.0", @@ -2273,7 +2273,7 @@ dependencies = [ [[package]] name = "wasmtime-fuzzing" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "arbitrary", @@ -2289,7 +2289,7 @@ dependencies = [ [[package]] name = "wasmtime-jit" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "cfg-if", @@ -2313,7 +2313,7 @@ dependencies = [ [[package]] name = "wasmtime-obj" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "faerie", @@ -2323,7 +2323,7 @@ dependencies = [ [[package]] name = "wasmtime-profiling" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "cfg-if", @@ -2341,7 +2341,7 @@ dependencies = [ [[package]] name = "wasmtime-runtime" -version = "0.14.0" +version = "0.15.0" dependencies = [ "backtrace", "cc", @@ -2358,7 +2358,7 @@ dependencies = [ [[package]] name = "wasmtime-rust" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "wasmtime", @@ -2368,7 +2368,7 @@ dependencies = [ [[package]] name = "wasmtime-rust-macro" -version = "0.14.0" +version = "0.15.0" dependencies = [ "proc-macro2", "quote", @@ -2377,7 +2377,7 @@ dependencies = [ [[package]] name = "wasmtime-wasi" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "log", @@ -2390,7 +2390,7 @@ dependencies = [ [[package]] name = "wasmtime-wast" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "wasmtime", @@ -2415,18 +2415,27 @@ dependencies = [ "leb128", ] +[[package]] +name = "wast" +version = "13.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b20abd8b4a26f7e0d4dd5e357e90a3d555ec190e94472c9b2b27c5b9777f9ae" +dependencies = [ + "leb128", +] + [[package]] name = "wat" -version = "1.0.12" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a9400dc1c8512087b2d974b1b9b0a6c4e6e26e7e8acf629e3e351165a1ed301" +checksum = "51a615830ee3e7200b505c441fec09aac2f114deae69df52f215cb828ba112c4" dependencies = [ - "wast 11.0.0", + "wast 13.0.0", ] [[package]] name = "wig" -version = "0.14.0" +version = "0.15.0" dependencies = [ "heck", "proc-macro2", @@ -2436,7 +2445,7 @@ dependencies = [ [[package]] name = "wiggle" -version = "0.14.0" +version = "0.15.0" dependencies = [ "proptest", "thiserror", @@ -2447,7 +2456,7 @@ dependencies = [ [[package]] name = "wiggle-generate" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "heck", @@ -2459,7 +2468,7 @@ dependencies = [ [[package]] name = "wiggle-macro" -version = "0.14.0" +version = "0.15.0" dependencies = [ "syn", "wiggle", @@ -2469,7 +2478,7 @@ dependencies = [ [[package]] name = "wiggle-test" -version = "0.14.0" +version = "0.15.0" dependencies = [ "proptest", "wiggle", @@ -2493,9 +2502,9 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80" +checksum = "fa515c5163a99cc82bab70fd3bfdd36d827be85de63737b40fcef2ce084a436e" dependencies = [ "winapi", ] @@ -2508,7 +2517,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "winx" -version = "0.14.0" +version = "0.15.0" dependencies = [ "bitflags", "cvt", @@ -2530,7 +2539,7 @@ dependencies = [ [[package]] name = "yanix" -version = "0.14.0" +version = "0.15.0" dependencies = [ "bitflags", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index e9ecc5565ae..4cb6252962c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime-cli" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] description = "Command-line interface for Wasmtime" license = "Apache-2.0 WITH LLVM-exception" @@ -22,14 +22,14 @@ doc = false [dependencies] # Enable all supported architectures by default. -wasmtime = { path = "crates/api", version = "0.14.0", default-features = false } -wasmtime-debug = { path = "crates/debug", version = "0.14.0" } -wasmtime-environ = { path = "crates/environ", version = "0.14.0" } -wasmtime-jit = { path = "crates/jit", version = "0.14.0" } -wasmtime-obj = { path = "crates/obj", version = "0.14.0" } -wasmtime-wast = { path = "crates/wast", version = "0.14.0" } -wasmtime-wasi = { path = "crates/wasi", version = "0.14.0" } -wasi-common = { path = "crates/wasi-common", version = "0.14.0" } +wasmtime = { path = "crates/api", version = "0.15.0", default-features = false } +wasmtime-debug = { path = "crates/debug", version = "0.15.0" } +wasmtime-environ = { path = "crates/environ", version = "0.15.0" } +wasmtime-jit = { path = "crates/jit", version = "0.15.0" } +wasmtime-obj = { path = "crates/obj", version = "0.15.0" } +wasmtime-wast = { path = "crates/wast", version = "0.15.0" } +wasmtime-wasi = { path = "crates/wasi", version = "0.15.0" } +wasi-common = { path = "crates/wasi-common", version = "0.15.0" } structopt = { version = "0.3.5", features = ["color", "suggestions"] } faerie = "0.15.0" anyhow = "1.0.19" @@ -41,7 +41,7 @@ libc = "0.2.60" rayon = "1.2.1" [dev-dependencies] -wasmtime-runtime = { path = "crates/runtime", version = "0.14.0" } +wasmtime-runtime = { path = "crates/runtime", version = "0.15.0" } more-asserts = "0.2.1" test-programs = { path = "crates/test-programs" } tempfile = "3.1.0" diff --git a/cranelift/Cargo.toml b/cranelift/Cargo.toml index 82bb9f1a0b4..8be71a9db2f 100644 --- a/cranelift/Cargo.toml +++ b/cranelift/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-tools" authors = ["The Cranelift Project Developers"] -version = "0.61.0" +version = "0.62.0" description = "Binaries for testing the Cranelift libraries" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://github.com/bytecodealliance/wasmtime/blob/master/cranelift/docs/index.md" @@ -15,20 +15,20 @@ path = "src/clif-util.rs" [dependencies] cfg-if = "0.1" -cranelift-codegen = { path = "codegen", version = "0.61.0" } -cranelift-entity = { path = "entity", version = "0.61.0" } -cranelift-reader = { path = "reader", version = "0.61.0" } -cranelift-frontend = { path = "frontend", version = "0.61.0" } -cranelift-serde = { path = "serde", version = "0.61.0", optional = true } -cranelift-wasm = { path = "wasm", version = "0.61.0", optional = true } -cranelift-native = { path = "native", version = "0.61.0" } -cranelift-filetests = { path = "filetests", version = "0.61.0" } -cranelift-module = { path = "module", version = "0.61.0" } -cranelift-faerie = { path = "faerie", version = "0.61.0" } -cranelift-object = { path = "object", version = "0.61.0" } -cranelift-simplejit = { path = "simplejit", version = "0.61.0" } -cranelift-preopt = { path = "preopt", version = "0.61.0" } -cranelift = { path = "umbrella", version = "0.61.0" } +cranelift-codegen = { path = "codegen", version = "0.62.0" } +cranelift-entity = { path = "entity", version = "0.62.0" } +cranelift-reader = { path = "reader", version = "0.62.0" } +cranelift-frontend = { path = "frontend", version = "0.62.0" } +cranelift-serde = { path = "serde", version = "0.62.0", optional = true } +cranelift-wasm = { path = "wasm", version = "0.62.0", optional = true } +cranelift-native = { path = "native", version = "0.62.0" } +cranelift-filetests = { path = "filetests", version = "0.62.0" } +cranelift-module = { path = "module", version = "0.62.0" } +cranelift-faerie = { path = "faerie", version = "0.62.0" } +cranelift-object = { path = "object", version = "0.62.0" } +cranelift-simplejit = { path = "simplejit", version = "0.62.0" } +cranelift-preopt = { path = "preopt", version = "0.62.0" } +cranelift = { path = "umbrella", version = "0.62.0" } filecheck = "0.5.0" clap = "2.32.0" serde = "1.0.8" diff --git a/cranelift/bforest/Cargo.toml b/cranelift/bforest/Cargo.toml index 58f80933ff6..0f8779a3884 100644 --- a/cranelift/bforest/Cargo.toml +++ b/cranelift/bforest/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-bforest" -version = "0.61.0" +version = "0.62.0" description = "A forest of B+-trees" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-bforest" @@ -12,7 +12,7 @@ keywords = ["btree", "forest", "set", "map"] edition = "2018" [dependencies] -cranelift-entity = { path = "../entity", version = "0.61.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.62.0", default-features = false } [badges] maintenance = { status = "experimental" } diff --git a/cranelift/codegen/Cargo.toml b/cranelift/codegen/Cargo.toml index 40ba3472c40..148fcf93273 100644 --- a/cranelift/codegen/Cargo.toml +++ b/cranelift/codegen/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-codegen" -version = "0.61.0" +version = "0.62.0" description = "Low-level code generator library" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-codegen" @@ -13,9 +13,9 @@ build = "build.rs" edition = "2018" [dependencies] -cranelift-codegen-shared = { path = "./shared", version = "0.61.0" } -cranelift-entity = { path = "../entity", version = "0.61.0" } -cranelift-bforest = { path = "../bforest", version = "0.61.0" } +cranelift-codegen-shared = { path = "./shared", version = "0.62.0" } +cranelift-entity = { path = "../entity", version = "0.62.0" } +cranelift-bforest = { path = "../bforest", version = "0.62.0" } hashbrown = { version = "0.7", optional = true } target-lexicon = "0.10" log = { version = "0.4.6", default-features = false } @@ -30,7 +30,7 @@ byteorder = { version = "1.3.2", default-features = false } # accomodated in `tests`. [build-dependencies] -cranelift-codegen-meta = { path = "meta", version = "0.61.0" } +cranelift-codegen-meta = { path = "meta", version = "0.62.0" } [features] default = ["std", "unwind"] diff --git a/cranelift/codegen/meta/Cargo.toml b/cranelift/codegen/meta/Cargo.toml index 6d5786aa7fd..9c5ad8e6669 100644 --- a/cranelift/codegen/meta/Cargo.toml +++ b/cranelift/codegen/meta/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-codegen-meta" authors = ["The Cranelift Project Developers"] -version = "0.61.0" +version = "0.62.0" description = "Metaprogram for cranelift-codegen code generator library" license = "Apache-2.0 WITH LLVM-exception" repository = "https://github.com/bytecodealliance/wasmtime" @@ -9,8 +9,8 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen-shared = { path = "../shared", version = "0.61.0" } -cranelift-entity = { path = "../../entity", version = "0.61.0" } +cranelift-codegen-shared = { path = "../shared", version = "0.62.0" } +cranelift-entity = { path = "../../entity", version = "0.62.0" } [badges] maintenance = { status = "experimental" } diff --git a/cranelift/codegen/shared/Cargo.toml b/cranelift/codegen/shared/Cargo.toml index 2f6b2711133..39c10fc123e 100644 --- a/cranelift/codegen/shared/Cargo.toml +++ b/cranelift/codegen/shared/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-codegen-shared" -version = "0.61.0" +version = "0.62.0" description = "For code shared between cranelift-codegen-meta and cranelift-codegen" license = "Apache-2.0 WITH LLVM-exception" repository = "https://github.com/bytecodealliance/wasmtime" diff --git a/cranelift/entity/Cargo.toml b/cranelift/entity/Cargo.toml index f0ef58b0470..1b7e7e5b1e3 100644 --- a/cranelift/entity/Cargo.toml +++ b/cranelift/entity/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-entity" -version = "0.61.0" +version = "0.62.0" description = "Data structures using entity references as mapping keys" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-entity" diff --git a/cranelift/faerie/Cargo.toml b/cranelift/faerie/Cargo.toml index 1de1610f600..f7390dff0ca 100644 --- a/cranelift/faerie/Cargo.toml +++ b/cranelift/faerie/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-faerie" -version = "0.61.0" +version = "0.62.0" authors = ["The Cranelift Project Developers"] description = "Emit Cranelift output to native object files with Faerie" repository = "https://github.com/bytecodealliance/wasmtime" @@ -10,8 +10,8 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-module = { path = "../module", version = "0.61.0" } -cranelift-codegen = { path = "../codegen", version = "0.61.0", default-features = false, features = ["std"] } +cranelift-module = { path = "../module", version = "0.62.0" } +cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false, features = ["std"] } faerie = "0.15.0" goblin = "0.1.0" anyhow = "1.0" diff --git a/cranelift/filetests/Cargo.toml b/cranelift/filetests/Cargo.toml index aed8c5b2fee..35b46b87c85 100644 --- a/cranelift/filetests/Cargo.toml +++ b/cranelift/filetests/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-filetests" authors = ["The Cranelift Project Developers"] -version = "0.61.0" +version = "0.62.0" description = "Test driver and implementations of the filetest commands" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-filetests" @@ -10,10 +10,10 @@ publish = false edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.61.0", features = ["testing_hooks"] } -cranelift-native = { path = "../native", version = "0.61.0" } -cranelift-reader = { path = "../reader", version = "0.61.0" } -cranelift-preopt = { path = "../preopt", version = "0.61.0" } +cranelift-codegen = { path = "../codegen", version = "0.62.0", features = ["testing_hooks"] } +cranelift-native = { path = "../native", version = "0.62.0" } +cranelift-reader = { path = "../reader", version = "0.62.0" } +cranelift-preopt = { path = "../preopt", version = "0.62.0" } file-per-thread-logger = "0.1.2" filecheck = "0.5.0" gimli = { version = "0.20.0", default-features = false, features = ["read"] } diff --git a/cranelift/frontend/Cargo.toml b/cranelift/frontend/Cargo.toml index 78fe10327a2..2c49b59506a 100644 --- a/cranelift/frontend/Cargo.toml +++ b/cranelift/frontend/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-frontend" -version = "0.61.0" +version = "0.62.0" description = "Cranelift IR builder helper" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-frontend" @@ -11,7 +11,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.61.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false } target-lexicon = "0.10" log = { version = "0.4.6", default-features = false } hashbrown = { version = "0.7", optional = true } diff --git a/cranelift/module/Cargo.toml b/cranelift/module/Cargo.toml index da6bbe7f693..f67a3fe2558 100644 --- a/cranelift/module/Cargo.toml +++ b/cranelift/module/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-module" -version = "0.61.0" +version = "0.62.0" authors = ["The Cranelift Project Developers"] description = "Support for linking functions and data with Cranelift" repository = "https://github.com/bytecodealliance/wasmtime" @@ -11,8 +11,8 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.61.0", default-features = false } -cranelift-entity = { path = "../entity", version = "0.61.0" } +cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.62.0" } hashbrown = { version = "0.6", optional = true } log = { version = "0.4.6", default-features = false } thiserror = "1.0.4" diff --git a/cranelift/native/Cargo.toml b/cranelift/native/Cargo.toml index f88f7526e48..ab181042507 100644 --- a/cranelift/native/Cargo.toml +++ b/cranelift/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-native" -version = "0.61.0" +version = "0.62.0" authors = ["The Cranelift Project Developers"] description = "Support for targeting the host with Cranelift" documentation = "https://docs.rs/cranelift-native" @@ -11,7 +11,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.61.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false } target-lexicon = "0.10" [target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies] diff --git a/cranelift/object/Cargo.toml b/cranelift/object/Cargo.toml index c47c4e5f360..ad24e760191 100644 --- a/cranelift/object/Cargo.toml +++ b/cranelift/object/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-object" -version = "0.61.0" +version = "0.62.0" authors = ["The Cranelift Project Developers"] description = "Emit Cranelift output to native object files with `object`" repository = "https://github.com/bytecodealliance/wasmtime" @@ -10,8 +10,8 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-module = { path = "../module", version = "0.61.0" } -cranelift-codegen = { path = "../codegen", version = "0.61.0", default-features = false, features = ["std"] } +cranelift-module = { path = "../module", version = "0.62.0" } +cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false, features = ["std"] } object = { version = "0.18", default-features = false, features = ["write"] } target-lexicon = "0.10" diff --git a/cranelift/preopt/Cargo.toml b/cranelift/preopt/Cargo.toml index eb1c1e4ad32..414a1685d5d 100644 --- a/cranelift/preopt/Cargo.toml +++ b/cranelift/preopt/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-preopt" -version = "0.61.0" +version = "0.62.0" description = "Support for optimizations in Cranelift" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-preopt" @@ -12,8 +12,8 @@ keywords = ["optimize", "compile", "compiler", "jit"] edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.61.0", default-features = false } -cranelift-entity = { path = "../entity", version = "0.61.0" } +cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.62.0" } # This is commented out because it doesn't build on Rust 1.25.0, which # cranelift currently supports. # rustc_apfloat = { version = "0.1.2", default-features = false } diff --git a/cranelift/reader/Cargo.toml b/cranelift/reader/Cargo.toml index f9c04d16a85..0b4d6c77467 100644 --- a/cranelift/reader/Cargo.toml +++ b/cranelift/reader/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-reader" -version = "0.61.0" +version = "0.62.0" description = "Cranelift textual IR reader" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift-reader" @@ -10,7 +10,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.61.0" } +cranelift-codegen = { path = "../codegen", version = "0.62.0" } target-lexicon = "0.10" [badges] diff --git a/cranelift/serde/Cargo.toml b/cranelift/serde/Cargo.toml index 2cb3aca115a..3808a29b679 100644 --- a/cranelift/serde/Cargo.toml +++ b/cranelift/serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-serde" -version = "0.61.0" +version = "0.62.0" authors = ["The Cranelift Project Developers"] description = "Serializer/Deserializer for Cranelift IR" repository = "https://github.com/bytecodealliance/wasmtime" @@ -18,8 +18,8 @@ clap = "2.32.0" serde = "1.0.8" serde_derive = "1.0.75" serde_json = "1.0.26" -cranelift-codegen = { path = "../codegen", version = "0.61.0" } -cranelift-reader = { path = "../reader", version = "0.61.0" } +cranelift-codegen = { path = "../codegen", version = "0.62.0" } +cranelift-reader = { path = "../reader", version = "0.62.0" } [badges] maintenance = { status = "experimental" } diff --git a/cranelift/simplejit/Cargo.toml b/cranelift/simplejit/Cargo.toml index f3749cb1471..ef8b8e7d3da 100644 --- a/cranelift/simplejit/Cargo.toml +++ b/cranelift/simplejit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-simplejit" -version = "0.61.0" +version = "0.62.0" authors = ["The Cranelift Project Developers"] description = "A simple JIT library backed by Cranelift" repository = "https://github.com/bytecodealliance/wasmtime" @@ -10,9 +10,9 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-module = { path = "../module", version = "0.61.0" } -cranelift-native = { path = "../native", version = "0.61.0" } -cranelift-codegen = { path = "../codegen", version = "0.61.0", default-features = false, features = ["std"] } +cranelift-module = { path = "../module", version = "0.62.0" } +cranelift-native = { path = "../native", version = "0.62.0" } +cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false, features = ["std"] } region = "2.0.0" libc = { version = "0.2.42" } errno = "0.2.4" @@ -27,9 +27,9 @@ selinux-fix = ['memmap'] default = [] [dev-dependencies] -cranelift = { path = "../umbrella", version = "0.61.0" } -cranelift-frontend = { path = "../frontend", version = "0.61.0" } -cranelift-entity = { path = "../entity", version = "0.61.0" } +cranelift = { path = "../umbrella", version = "0.62.0" } +cranelift-frontend = { path = "../frontend", version = "0.62.0" } +cranelift-entity = { path = "../entity", version = "0.62.0" } [badges] maintenance = { status = "experimental" } diff --git a/cranelift/umbrella/Cargo.toml b/cranelift/umbrella/Cargo.toml index 81f57dc7ad8..68115980d96 100644 --- a/cranelift/umbrella/Cargo.toml +++ b/cranelift/umbrella/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift" -version = "0.61.0" +version = "0.62.0" description = "Umbrella for commonly-used cranelift crates" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://docs.rs/cranelift" @@ -12,8 +12,8 @@ keywords = ["compile", "compiler", "jit"] edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.61.0", default-features = false } -cranelift-frontend = { path = "../frontend", version = "0.61.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false } +cranelift-frontend = { path = "../frontend", version = "0.62.0", default-features = false } [features] default = ["std"] diff --git a/cranelift/wasm/Cargo.toml b/cranelift/wasm/Cargo.toml index a5c181cb962..22952ffa704 100644 --- a/cranelift/wasm/Cargo.toml +++ b/cranelift/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-wasm" -version = "0.61.0" +version = "0.62.0" authors = ["The Cranelift Project Developers"] description = "Translator from WebAssembly to Cranelift IR" documentation = "https://docs.rs/cranelift-wasm" @@ -13,9 +13,9 @@ edition = "2018" [dependencies] wasmparser = { version = "0.51.0", default-features = false } -cranelift-codegen = { path = "../codegen", version = "0.61.0", default-features = false } -cranelift-entity = { path = "../entity", version = "0.61.0" } -cranelift-frontend = { path = "../frontend", version = "0.61.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.62.0" } +cranelift-frontend = { path = "../frontend", version = "0.62.0", default-features = false } hashbrown = { version = "0.7", optional = true } log = { version = "0.4.6", default-features = false } serde = { version = "1.0.94", features = ["derive"], optional = true } diff --git a/crates/api/Cargo.toml b/crates/api/Cargo.toml index 9b3936063a5..ea4580f24bf 100644 --- a/crates/api/Cargo.toml +++ b/crates/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] description = "High-level API to expose the Wasmtime runtime" documentation = "https://docs.rs/wasmtime" @@ -10,10 +10,10 @@ readme = "README.md" edition = "2018" [dependencies] -wasmtime-runtime = { path = "../runtime", version = "0.14.0" } -wasmtime-environ = { path = "../environ", version = "0.14.0" } -wasmtime-jit = { path = "../jit", version = "0.14.0" } -wasmtime-profiling = { path = "../profiling", version = "0.14.0" } +wasmtime-runtime = { path = "../runtime", version = "0.15.0" } +wasmtime-environ = { path = "../environ", version = "0.15.0" } +wasmtime-jit = { path = "../jit", version = "0.15.0" } +wasmtime-profiling = { path = "../profiling", version = "0.15.0" } wasmparser = "0.51.2" target-lexicon = { version = "0.10.0", default-features = false } anyhow = "1.0.19" @@ -30,7 +30,7 @@ winapi = "0.3.7" [dev-dependencies] # for wasmtime.rs -wasi-common = { path = "../wasi-common", version = "0.14.0" } +wasi-common = { path = "../wasi-common", version = "0.15.0" } pretty_env_logger = "0.4.0" rayon = "1.2.1" file-per-thread-logger = "0.1.1" diff --git a/crates/c-api/Cargo.toml b/crates/c-api/Cargo.toml index d3ea37aff08..4c953ab3073 100644 --- a/crates/c-api/Cargo.toml +++ b/crates/c-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime-c-api" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] description = "C API to expose the Wasmtime runtime" license = "Apache-2.0 WITH LLVM-exception" diff --git a/crates/c-api/macros/Cargo.toml b/crates/c-api/macros/Cargo.toml index a5f44694b09..80e550f0f9c 100644 --- a/crates/c-api/macros/Cargo.toml +++ b/crates/c-api/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime-c-api-macros" -version = "0.1.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] edition = "2018" publish = false diff --git a/crates/debug/Cargo.toml b/crates/debug/Cargo.toml index 8bd1661c458..a91e6e104e5 100644 --- a/crates/debug/Cargo.toml +++ b/crates/debug/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime-debug" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] description = "Debug utils for WebAsssembly code in Cranelift" license = "Apache-2.0 WITH LLVM-exception" @@ -15,7 +15,7 @@ edition = "2018" gimli = "0.20.0" wasmparser = "0.51.2" faerie = "0.15.0" -wasmtime-environ = { path = "../environ", version = "0.14.0" } +wasmtime-environ = { path = "../environ", version = "0.15.0" } target-lexicon = { version = "0.10.0", default-features = false } anyhow = "1.0" thiserror = "1.0.4" diff --git a/crates/environ/Cargo.toml b/crates/environ/Cargo.toml index 053e761fb37..b4607451295 100644 --- a/crates/environ/Cargo.toml +++ b/crates/environ/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime-environ" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] description = "Standalone environment support for WebAsssembly code in Cranelift" license = "Apache-2.0 WITH LLVM-exception" @@ -13,11 +13,11 @@ edition = "2018" [dependencies] anyhow = "1.0" -cranelift-codegen = { path = "../../cranelift/codegen", version = "0.61.0", features = ["enable-serde"] } -cranelift-entity = { path = "../../cranelift/entity", version = "0.61.0", features = ["enable-serde"] } -cranelift-wasm = { path = "../../cranelift/wasm", version = "0.61.0", features = ["enable-serde"] } +cranelift-codegen = { path = "../../cranelift/codegen", version = "0.62.0", features = ["enable-serde"] } +cranelift-entity = { path = "../../cranelift/entity", version = "0.62.0", features = ["enable-serde"] } +cranelift-wasm = { path = "../../cranelift/wasm", version = "0.62.0", features = ["enable-serde"] } wasmparser = "0.51.2" -lightbeam = { path = "../lightbeam", optional = true, version = "0.14.0" } +lightbeam = { path = "../lightbeam", optional = true, version = "0.15.0" } indexmap = "1.0.2" rayon = "1.2.1" thiserror = "1.0.4" @@ -44,7 +44,7 @@ tempfile = "3" target-lexicon = { version = "0.10.0", default-features = false } pretty_env_logger = "0.4.0" rand = { version = "0.7.0", default-features = false, features = ["small_rng"] } -cranelift-codegen = { path = "../../cranelift/codegen", version = "0.61.0", features = ["enable-serde", "all-arch"] } +cranelift-codegen = { path = "../../cranelift/codegen", version = "0.62.0", features = ["enable-serde", "all-arch"] } filetime = "0.2.7" lazy_static = "1.3.0" diff --git a/crates/fuzzing/Cargo.toml b/crates/fuzzing/Cargo.toml index 1a1e51c96c6..1a5ee063973 100644 --- a/crates/fuzzing/Cargo.toml +++ b/crates/fuzzing/Cargo.toml @@ -4,7 +4,7 @@ description = "Fuzzing infrastructure for Wasmtime" edition = "2018" name = "wasmtime-fuzzing" publish = false -version = "0.14.0" +version = "0.15.0" [dependencies] anyhow = "1.0.22" @@ -15,7 +15,7 @@ log = "0.4.8" rayon = "1.2.1" wasmparser = "0.51.2" wasmprinter = "0.2.1" -wasmtime = { path = "../api", version = "0.14.0" } +wasmtime = { path = "../api", version = "0.15.0" } [dev-dependencies] wat = "1.0.10" diff --git a/crates/jit/Cargo.toml b/crates/jit/Cargo.toml index cf8a1844cf6..16e804e7d93 100644 --- a/crates/jit/Cargo.toml +++ b/crates/jit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime-jit" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] description = "JIT-style execution for WebAsssembly code in Cranelift" documentation = "https://docs.rs/wasmtime-jit" @@ -12,15 +12,15 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../../cranelift/codegen", version = "0.61.0", features = ["enable-serde"] } -cranelift-entity = { path = "../../cranelift/entity", version = "0.61.0", features = ["enable-serde"] } -cranelift-wasm = { path = "../../cranelift/wasm", version = "0.61.0", features = ["enable-serde"] } -cranelift-native = { path = "../../cranelift/native", version = "0.61.0" } -cranelift-frontend = { path = "../../cranelift/frontend", version = "0.61.0" } -wasmtime-environ = { path = "../environ", version = "0.14.0" } -wasmtime-runtime = { path = "../runtime", version = "0.14.0" } -wasmtime-debug = { path = "../debug", version = "0.14.0" } -wasmtime-profiling = { path = "../profiling", version = "0.14.0" } +cranelift-codegen = { path = "../../cranelift/codegen", version = "0.62.0", features = ["enable-serde"] } +cranelift-entity = { path = "../../cranelift/entity", version = "0.62.0", features = ["enable-serde"] } +cranelift-wasm = { path = "../../cranelift/wasm", version = "0.62.0", features = ["enable-serde"] } +cranelift-native = { path = "../../cranelift/native", version = "0.62.0" } +cranelift-frontend = { path = "../../cranelift/frontend", version = "0.62.0" } +wasmtime-environ = { path = "../environ", version = "0.15.0" } +wasmtime-runtime = { path = "../runtime", version = "0.15.0" } +wasmtime-debug = { path = "../debug", version = "0.15.0" } +wasmtime-profiling = { path = "../profiling", version = "0.15.0" } region = "2.0.0" thiserror = "1.0.4" target-lexicon = { version = "0.10.0", default-features = false } diff --git a/crates/lightbeam/Cargo.toml b/crates/lightbeam/Cargo.toml index a7c3c7c6934..9ff0c59db21 100644 --- a/crates/lightbeam/Cargo.toml +++ b/crates/lightbeam/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightbeam" -version = "0.14.0" +version = "0.15.0" authors = ["The Lightbeam Project Developers"] description = "An optimising one-pass streaming compiler for WebAssembly" license = "Apache-2.0 WITH LLVM-exception" @@ -19,7 +19,7 @@ memoffset = "0.5.3" itertools = "0.8.2" capstone = "0.6.0" thiserror = "1.0.9" -cranelift-codegen = { path = "../../cranelift/codegen", version = "0.61.0" } +cranelift-codegen = { path = "../../cranelift/codegen", version = "0.62.0" } multi_mut = "0.1" either = "1.5" typemap = "0.3" diff --git a/crates/misc/run-examples/Cargo.toml b/crates/misc/run-examples/Cargo.toml index 1d87292bca4..8b45b66a6f6 100644 --- a/crates/misc/run-examples/Cargo.toml +++ b/crates/misc/run-examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "run-examples" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] edition = "2018" publish = false diff --git a/crates/misc/rust/Cargo.toml b/crates/misc/rust/Cargo.toml index 464575d9de0..c05e85e3027 100644 --- a/crates/misc/rust/Cargo.toml +++ b/crates/misc/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime-rust" -version = "0.14.0" +version = "0.15.0" authors = ["Alex Crichton "] description = "Rust extension for Wasmtime" license = "Apache-2.0 WITH LLVM-exception" @@ -15,9 +15,9 @@ test = false doctest = false [dependencies] -wasmtime-rust-macro = { path = "./macro", version = "0.14.0" } -wasmtime-wasi = { path = "../../wasi", version = "0.14.0" } -wasmtime = { path = "../../api", version = "0.14.0" } +wasmtime-rust-macro = { path = "./macro", version = "0.15.0" } +wasmtime-wasi = { path = "../../wasi", version = "0.15.0" } +wasmtime = { path = "../../api", version = "0.15.0" } anyhow = "1.0.19" [badges] diff --git a/crates/misc/rust/macro/Cargo.toml b/crates/misc/rust/macro/Cargo.toml index b5bd924e3e1..3e291fb2906 100644 --- a/crates/misc/rust/macro/Cargo.toml +++ b/crates/misc/rust/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime-rust-macro" -version = "0.14.0" +version = "0.15.0" authors = ["Alex Crichton "] description = "Macro support crate for wasmtime-rust" license = "Apache-2.0 WITH LLVM-exception" diff --git a/crates/obj/Cargo.toml b/crates/obj/Cargo.toml index 3a7a6247c69..5acf8887970 100644 --- a/crates/obj/Cargo.toml +++ b/crates/obj/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime-obj" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] description = "Native object file output for WebAsssembly code in Wasmtime" license = "Apache-2.0 WITH LLVM-exception" @@ -12,7 +12,7 @@ edition = "2018" [dependencies] anyhow = "1.0" -wasmtime-environ = { path = "../environ", version = "0.14.0" } +wasmtime-environ = { path = "../environ", version = "0.15.0" } faerie = "0.15.0" more-asserts = "0.2.1" diff --git a/crates/profiling/Cargo.toml b/crates/profiling/Cargo.toml index 60308cf0a9c..afc28862b78 100644 --- a/crates/profiling/Cargo.toml +++ b/crates/profiling/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime-profiling" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] description = "Runtime library support for Wasmtime" license = "Apache-2.0 WITH LLVM-exception" @@ -20,8 +20,8 @@ object = { version = "0.18.0", optional = true } scroll = { version = "0.10.1", optional = true } serde = { version = "1.0.99", features = ["derive"] } target-lexicon = "0.10.0" -wasmtime-environ = { path = "../environ", version = "0.14.0" } -wasmtime-runtime = { path = "../runtime", version = "0.14.0" } +wasmtime-environ = { path = "../environ", version = "0.15.0" } +wasmtime-runtime = { path = "../runtime", version = "0.15.0" } ittapi-rs = { version = "0.1.5", optional = true } [badges] diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index a88e795e63e..679503051fb 100644 --- a/crates/runtime/Cargo.toml +++ b/crates/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime-runtime" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] description = "Runtime library support for Wasmtime" documentation = "https://docs.rs/wasmtime-runtime" @@ -12,7 +12,7 @@ readme = "README.md" edition = "2018" [dependencies] -wasmtime-environ = { path = "../environ", version = "0.14.0" } +wasmtime-environ = { path = "../environ", version = "0.15.0" } region = "2.0.0" libc = { version = "0.2.60", default-features = false } memoffset = "0.5.3" diff --git a/crates/test-programs/Cargo.toml b/crates/test-programs/Cargo.toml index 27b0eceac7e..a44a70f9bbd 100644 --- a/crates/test-programs/Cargo.toml +++ b/crates/test-programs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-programs" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] readme = "README.md" edition = "2018" @@ -10,9 +10,9 @@ publish = false cfg-if = "0.1.9" [dev-dependencies] -wasi-common = { path = "../wasi-common", version = "0.14.0" } -wasmtime-wasi = { path = "../wasi", version = "0.14.0" } -wasmtime = { path = "../api", version = "0.14.0" } +wasi-common = { path = "../wasi-common", version = "0.15.0" } +wasmtime-wasi = { path = "../wasi", version = "0.15.0" } +wasmtime = { path = "../api", version = "0.15.0" } target-lexicon = "0.10.0" pretty_env_logger = "0.4.0" tempfile = "3.1.0" diff --git a/crates/test-programs/wasi-tests/Cargo.lock b/crates/test-programs/wasi-tests/Cargo.lock index b30c712cf38..087e2708ca2 100644 --- a/crates/test-programs/wasi-tests/Cargo.lock +++ b/crates/test-programs/wasi-tests/Cargo.lock @@ -17,7 +17,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wasi-tests" -version = "0.14.0" +version = "0.15.0" dependencies = [ "libc 0.2.68 (registry+https://github.com/rust-lang/crates.io-index)", "more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/crates/test-programs/wasi-tests/Cargo.toml b/crates/test-programs/wasi-tests/Cargo.toml index d706c3999cf..96be84d26a9 100644 --- a/crates/test-programs/wasi-tests/Cargo.toml +++ b/crates/test-programs/wasi-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasi-tests" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] readme = "README.md" edition = "2018" diff --git a/crates/wasi-common/Cargo.toml b/crates/wasi-common/Cargo.toml index 6bb0a463137..38a3697d3f2 100644 --- a/crates/wasi-common/Cargo.toml +++ b/crates/wasi-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasi-common" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] description = "WASI implementation in Rust" license = "Apache-2.0 WITH LLVM-exception" @@ -9,12 +9,12 @@ keywords = ["webassembly", "wasm"] repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018" -include = ["src/**/*", "LICENSE", "WASI/phases"] +include = ["src/**/*", "LICENSE", "WASI/phases", "build.rs"] # This doesn't actually link to a native library, but it allows us to set env -# vars like `DEP_WASI_COMMON_14_*` for crates that have build scripts and depend +# vars like `DEP_WASI_COMMON_15_*` for crates that have build scripts and depend # on this crate, allowing other crates to use the same witx files. -links = "wasi-common-14" +links = "wasi-common-15" [dependencies] anyhow = "1.0" @@ -26,14 +26,14 @@ log = "0.4" filetime = "0.2.7" lazy_static = "1.4.0" num = { version = "0.2.0", default-features = false } -wig = { path = "wig", version = "0.14.0" } -wiggle = { path = "../wiggle", default-features = false, version = "0.14.0" } +wig = { path = "wig", version = "0.15.0" } +wiggle = { path = "../wiggle", default-features = false, version = "0.15.0" } [target.'cfg(unix)'.dependencies] -yanix = { path = "yanix", version = "0.14.0" } +yanix = { path = "yanix", version = "0.15.0" } [target.'cfg(windows)'.dependencies] -winx = { path = "winx", version = "0.14.0" } +winx = { path = "winx", version = "0.15.0" } winapi = "0.3" cpu-time = "1.0" diff --git a/crates/wasi-common/wig/Cargo.toml b/crates/wasi-common/wig/Cargo.toml index 77a13716000..977c88f55c5 100644 --- a/crates/wasi-common/wig/Cargo.toml +++ b/crates/wasi-common/wig/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wig" -version = "0.14.0" +version = "0.15.0" authors = ["Dan Gohman "] description = "WebAssembly Interface Generator" license = "Apache-2.0 WITH LLVM-exception" diff --git a/crates/wasi-common/winx/Cargo.toml b/crates/wasi-common/winx/Cargo.toml index 681d8dba89f..7fb4d511f02 100644 --- a/crates/wasi-common/winx/Cargo.toml +++ b/crates/wasi-common/winx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "winx" -version = "0.14.0" +version = "0.15.0" authors = ["Jakub Konka "] description = "Windows API helper library" documentation = "https://docs.rs/winx" diff --git a/crates/wasi-common/yanix/Cargo.toml b/crates/wasi-common/yanix/Cargo.toml index 60ba8ebad46..db27f111278 100644 --- a/crates/wasi-common/yanix/Cargo.toml +++ b/crates/wasi-common/yanix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yanix" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] description = "Yet Another Nix crate: a Unix API helper library" documentation = "https://docs.rs/yanix" diff --git a/crates/wasi/Cargo.toml b/crates/wasi/Cargo.toml index 6ca7cb46741..2bd165642ef 100644 --- a/crates/wasi/Cargo.toml +++ b/crates/wasi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime-wasi" -version = "0.14.0" +version = "0.15.0" authors = ["The Cranelift Project Developers"] description = "WASI API support for Wasmtime" documentation = "https://docs.rs/wasmtime-wasi" @@ -14,11 +14,11 @@ edition = "2018" [dependencies] anyhow = "1.0" log = { version = "0.4.8", default-features = false } -wasi-common = { path = "../wasi-common", version = "0.14.0" } -wasmtime = { path = "../api", version = "0.14.0", default-features = false } -wasmtime-runtime = { path = "../runtime", version = "0.14.0" } -wig = { path = "../wasi-common/wig", version = "0.14.0" } -wiggle = { path = "../wiggle", version = "0.14.0" } +wasi-common = { path = "../wasi-common", version = "0.15.0" } +wasmtime = { path = "../api", version = "0.15.0", default-features = false } +wasmtime-runtime = { path = "../runtime", version = "0.15.0" } +wig = { path = "../wasi-common/wig", version = "0.15.0" } +wiggle = { path = "../wiggle", version = "0.15.0" } [badges] maintenance = { status = "actively-developed" } diff --git a/crates/wasi/build.rs b/crates/wasi/build.rs index ba8c07337bf..0a56c630e64 100644 --- a/crates/wasi/build.rs +++ b/crates/wasi/build.rs @@ -1,4 +1,4 @@ fn main() { - let wasi_root = std::env::var("DEP_WASI_COMMON_14_WASI").unwrap(); + let wasi_root = std::env::var("DEP_WASI_COMMON_15_WASI").unwrap(); println!("cargo:rustc-env=WASI_ROOT={}", wasi_root); } diff --git a/crates/wast/Cargo.toml b/crates/wast/Cargo.toml index 9a911cb9cff..ac17de7df0d 100644 --- a/crates/wast/Cargo.toml +++ b/crates/wast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmtime-wast" -version = "0.14.0" +version = "0.15.0" authors = ["The Wasmtime Project Developers"] description = "wast testing support for wasmtime" license = "Apache-2.0 WITH LLVM-exception" @@ -12,7 +12,7 @@ edition = "2018" [dependencies] anyhow = "1.0.19" -wasmtime = { path = "../api", version = "0.14.0", default-features = false } +wasmtime = { path = "../api", version = "0.15.0", default-features = false } wast = "11.0.0" [badges] diff --git a/crates/wiggle/Cargo.toml b/crates/wiggle/Cargo.toml index af4bad9bef9..ed9f84ec983 100644 --- a/crates/wiggle/Cargo.toml +++ b/crates/wiggle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wiggle" -version = "0.14.0" +version = "0.15.0" authors = ["Pat Hickey ", "Jakub Konka ", "Alex Crichton "] edition = "2018" license = "Apache-2.0 WITH LLVM-exception" @@ -13,7 +13,7 @@ include = ["src/**/*", "LICENSE"] [dependencies] thiserror = "1" witx = { path = "../wasi-common/WASI/tools/witx", version = "0.8.4", optional = true } -wiggle-macro = { path = "macro", version = "0.14.0" } +wiggle-macro = { path = "macro", version = "0.15.0" } [badges] maintenance = { status = "actively-developed" } diff --git a/crates/wiggle/generate/Cargo.toml b/crates/wiggle/generate/Cargo.toml index f9d4b80738e..365deb44e3c 100644 --- a/crates/wiggle/generate/Cargo.toml +++ b/crates/wiggle/generate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wiggle-generate" -version = "0.14.0" +version = "0.15.0" authors = ["Pat Hickey ", "Jakub Konka ", "Alex Crichton "] license = "Apache-2.0 WITH LLVM-exception" edition = "2018" diff --git a/crates/wiggle/macro/Cargo.toml b/crates/wiggle/macro/Cargo.toml index a90e272a50c..3f56b118822 100644 --- a/crates/wiggle/macro/Cargo.toml +++ b/crates/wiggle/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wiggle-macro" -version = "0.14.0" +version = "0.15.0" authors = ["Pat Hickey ", "Jakub Konka ", "Alex Crichton "] edition = "2018" license = "Apache-2.0 WITH LLVM-exception" @@ -14,7 +14,7 @@ include = ["src/**/*", "LICENSE"] proc-macro = true [dependencies] -wiggle-generate = { path = "../generate", version = "0.14.0" } +wiggle-generate = { path = "../generate", version = "0.15.0" } witx = { path = "../../wasi-common/WASI/tools/witx", version = "0.8.4" } syn = { version = "1.0", features = ["full"] } diff --git a/crates/wiggle/test-helpers/Cargo.toml b/crates/wiggle/test-helpers/Cargo.toml index bba56b875ff..66d7399db2a 100644 --- a/crates/wiggle/test-helpers/Cargo.toml +++ b/crates/wiggle/test-helpers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wiggle-test" -version = "0.14.0" +version = "0.15.0" authors = ["Pat Hickey ", "Jakub Konka ", "Alex Crichton "] license = "Apache-2.0 WITH LLVM-exception" edition = "2018" diff --git a/scripts/bump-cranelift-version.sh b/scripts/bump-cranelift-version.sh index 619b5eaa8f2..3b1a36ccd1b 100755 --- a/scripts/bump-cranelift-version.sh +++ b/scripts/bump-cranelift-version.sh @@ -9,7 +9,7 @@ topdir=$(dirname "$0")/.. cd "$topdir" # All the cranelift-* crates have the same version number -version="0.61.0" +version="0.62.0" # Update all of the Cargo.toml files. echo "Updating crate versions to $version" diff --git a/scripts/bump-wasmtime-version.sh b/scripts/bump-wasmtime-version.sh index 75a760e18cb..974ea01126d 100755 --- a/scripts/bump-wasmtime-version.sh +++ b/scripts/bump-wasmtime-version.sh @@ -9,7 +9,7 @@ topdir=$(dirname "$0")/.. cd "$topdir" # All the wasmtime-* crates have the same version number -version="0.14.0" +version="0.15.0" # Update the version numbers of the crates to $version. Skip crates with # a version of "0.0.0", which are unpublished. diff --git a/scripts/publish-wasmtime.sh b/scripts/publish-wasmtime.sh index 9449b6352d4..ab30fce56cd 100755 --- a/scripts/publish-wasmtime.sh +++ b/scripts/publish-wasmtime.sh @@ -53,4 +53,4 @@ for cargo_toml in \ echo sleep 20 done -echo echo git tag v$(grep "version =" Cargo.toml | head -n 1 | cut -d '"' -f 2) +echo git tag v$(grep "version =" Cargo.toml | head -n 1 | cut -d '"' -f 2)