Skip to content
This repository was archived by the owner on Mar 24, 2022. It is now read-only.

Commit 7064e22

Browse files
committed
bump to 0.5.1
1 parent 9c0f15d commit 7064e22

File tree

14 files changed

+111
-111
lines changed

14 files changed

+111
-111
lines changed

Cargo.lock

Lines changed: 69 additions & 69 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

benchmarks/lucet-benchmarks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lucet-benchmarks"
3-
version = "0.4.1"
3+
version = "0.5.1"
44
description = "Benchmarks for the Lucet runtime"
55
homepage = "https://github.com/fastly/lucet"
66
repository = "https://github.com/fastly/lucet"

lucet-module/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lucet-module"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "A structured interface for Lucet modules"
55
homepage = "https://github.com/fastly/lucet"
66
repository = "https://github.com/fastly/lucet"

lucet-objdump/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lucet-objdump"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Analyze object files emitted by the Lucet compiler"
55
homepage = "https://github.com/fastly/lucet"
66
repository = "https://github.com/fastly/lucet"
@@ -13,7 +13,7 @@ edition = "2018"
1313
goblin="0.0.24"
1414
byteorder="1.2.1"
1515
colored="1.8.0"
16-
lucet-module = { path = "../lucet-module", version = "=0.5.0" }
16+
lucet-module = { path = "../lucet-module", version = "=0.5.1" }
1717

1818
[package.metadata.deb]
1919
name = "fst-lucet-objdump"

lucet-runtime/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lucet-runtime"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Pure Rust runtime for Lucet WebAssembly toolchain"
55
homepage = "https://github.com/fastly/lucet"
66
repository = "https://github.com/fastly/lucet"
@@ -11,17 +11,17 @@ edition = "2018"
1111

1212
[dependencies]
1313
libc = "0.2.65"
14-
lucet-runtime-internals = { path = "lucet-runtime-internals", version = "=0.5.0" }
15-
lucet-module = { path = "../lucet-module", version = "=0.5.0" }
14+
lucet-runtime-internals = { path = "lucet-runtime-internals", version = "=0.5.1" }
15+
lucet-module = { path = "../lucet-module", version = "=0.5.1" }
1616
num-traits = "0.2"
1717
num-derive = "0.3.0"
1818

1919
[dev-dependencies]
2020
byteorder = "1.2"
2121
lazy_static = "1.1"
22-
lucetc = { path = "../lucetc", version = "=0.5.0" }
23-
lucet-runtime-tests = { path = "lucet-runtime-tests", version = "=0.5.0" }
24-
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "=0.5.0" }
22+
lucetc = { path = "../lucetc", version = "=0.5.1" }
23+
lucet-runtime-tests = { path = "lucet-runtime-tests", version = "=0.5.1" }
24+
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "=0.5.1" }
2525
nix = "0.15"
2626
rayon = "1.0"
2727
tempfile = "3.0"

lucet-runtime/lucet-runtime-internals/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lucet-runtime-internals"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Pure Rust runtime for Lucet WebAssembly toolchain (internals)"
55
homepage = "https://github.com/fastly/lucet"
66
repository = "https://github.com/fastly/lucet"
@@ -10,8 +10,8 @@ authors = ["Lucet team <[email protected]>"]
1010
edition = "2018"
1111

1212
[dependencies]
13-
lucet-module = { path = "../../lucet-module", version = "=0.5.0" }
14-
lucet-runtime-macros = { path = "../lucet-runtime-macros", version = "=0.5.0" }
13+
lucet-module = { path = "../../lucet-module", version = "=0.5.1" }
14+
lucet-runtime-macros = { path = "../lucet-runtime-macros", version = "=0.5.1" }
1515

1616
anyhow = "1.0"
1717
bitflags = "1.0"

lucet-runtime/lucet-runtime-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lucet-runtime-macros"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Macros for the Lucet WebAssembly runtime"
55
homepage = "https://github.com/bytecodealliance/lucet"
66
repository = "https://github.com/bytecodealliance/lucet"

lucet-runtime/lucet-runtime-tests/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lucet-runtime-tests"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Pure Rust runtime for Lucet WebAssembly toolchain (tests)"
55
homepage = "https://github.com/fastly/lucet"
66
repository = "https://github.com/fastly/lucet"
@@ -18,10 +18,10 @@ test = false
1818
anyhow = "1"
1919
lazy_static = "1.1"
2020
tempfile = "3.0"
21-
lucet-module = { path = "../../lucet-module", version = "=0.5.0" }
22-
lucet-runtime-internals = { path = "../lucet-runtime-internals", version = "=0.5.0" }
23-
lucet-wasi-sdk = { path = "../../lucet-wasi-sdk", version = "=0.5.0" }
24-
lucetc = { path = "../../lucetc", version = "=0.5.0" }
21+
lucet-module = { path = "../../lucet-module", version = "=0.5.1" }
22+
lucet-runtime-internals = { path = "../lucet-runtime-internals", version = "=0.5.1" }
23+
lucet-wasi-sdk = { path = "../../lucet-wasi-sdk", version = "=0.5.1" }
24+
lucetc = { path = "../../lucetc", version = "=0.5.1" }
2525

2626
[build-dependencies]
2727
cc = "1.0"

lucet-spectest/Cargo.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lucet-spectest"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Test harness to run WebAssembly spec tests (.wast) against the Lucet toolchain"
55
homepage = "https://github.com/fastly/lucet"
66
repository = "https://github.com/fastly/lucet"
@@ -17,10 +17,9 @@ name = "spec-test"
1717
path = "src/main.rs"
1818

1919
[dependencies]
20-
anyhow = "1"
21-
lucetc = { path = "../lucetc", version = "=0.5.0" }
22-
lucet-module = { path = "../lucet-module", version = "=0.5.0" }
23-
lucet-runtime = { path = "../lucet-runtime", version = "=0.5.0" }
20+
lucetc = { path = "../lucetc", version = "=0.5.1" }
21+
lucet-module = { path = "../lucet-module", version = "=0.5.1" }
22+
lucet-runtime = { path = "../lucet-runtime", version = "=0.5.1" }
2423
wabt = "0.9.2"
2524
serde = "1.0"
2625
serde_json = "1.0"

lucet-validate/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lucet-validate"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Parse and validate webassembly files against witx interface"
55
homepage = "https://github.com/fastly/lucet"
66
repository = "https://github.com/fastly/lucet"
@@ -24,7 +24,7 @@ thiserror = "1.0.4"
2424
wasmparser = "0.39.1"
2525

2626
[dev-dependencies]
27-
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "=0.5.0" }
27+
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "=0.5.1" }
2828
tempfile = "3.0"
2929
wabt = "0.9.2"
3030

0 commit comments

Comments
 (0)