This repository was archived by the owner on Mar 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 14 files changed +111
-111
lines changed
benchmarks/lucet-benchmarks Expand file tree Collapse file tree 14 files changed +111
-111
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " lucet-benchmarks"
3- version = " 0.4 .1"
3+ version = " 0.5 .1"
44description = " Benchmarks for the Lucet runtime"
55homepage = " https://github.com/fastly/lucet"
66repository = " https://github.com/fastly/lucet"
Original file line number Diff line number Diff line change 11[package ]
22name = " lucet-module"
3- version = " 0.5.0 "
3+ version = " 0.5.1 "
44description = " A structured interface for Lucet modules"
55homepage = " https://github.com/fastly/lucet"
66repository = " https://github.com/fastly/lucet"
Original file line number Diff line number Diff line change 11[package ]
22name = " lucet-objdump"
3- version = " 0.5.0 "
3+ version = " 0.5.1 "
44description = " Analyze object files emitted by the Lucet compiler"
55homepage = " https://github.com/fastly/lucet"
66repository = " https://github.com/fastly/lucet"
@@ -13,7 +13,7 @@ edition = "2018"
1313goblin =" 0.0.24"
1414byteorder =" 1.2.1"
1515colored =" 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 ]
1919name = " fst-lucet-objdump"
Original file line number Diff line number Diff line change 11[package ]
22name = " lucet-runtime"
3- version = " 0.5.0 "
3+ version = " 0.5.1 "
44description = " Pure Rust runtime for Lucet WebAssembly toolchain"
55homepage = " https://github.com/fastly/lucet"
66repository = " https://github.com/fastly/lucet"
@@ -11,17 +11,17 @@ edition = "2018"
1111
1212[dependencies ]
1313libc = " 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 " }
1616num-traits = " 0.2"
1717num-derive = " 0.3.0"
1818
1919[dev-dependencies ]
2020byteorder = " 1.2"
2121lazy_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 " }
2525nix = " 0.15"
2626rayon = " 1.0"
2727tempfile = " 3.0"
Original file line number Diff line number Diff line change 11[package ]
22name = " lucet-runtime-internals"
3- version = " 0.5.0 "
3+ version = " 0.5.1 "
44description = " Pure Rust runtime for Lucet WebAssembly toolchain (internals)"
55homepage = " https://github.com/fastly/lucet"
66repository = " https://github.com/fastly/lucet"
1010edition = " 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
1616anyhow = " 1.0"
1717bitflags = " 1.0"
Original file line number Diff line number Diff line change 11[package ]
22name = " lucet-runtime-macros"
3- version = " 0.5.0 "
3+ version = " 0.5.1 "
44description = " Macros for the Lucet WebAssembly runtime"
55homepage = " https://github.com/bytecodealliance/lucet"
66repository = " https://github.com/bytecodealliance/lucet"
Original file line number Diff line number Diff line change 11[package ]
22name = " lucet-runtime-tests"
3- version = " 0.5.0 "
3+ version = " 0.5.1 "
44description = " Pure Rust runtime for Lucet WebAssembly toolchain (tests)"
55homepage = " https://github.com/fastly/lucet"
66repository = " https://github.com/fastly/lucet"
@@ -18,10 +18,10 @@ test = false
1818anyhow = " 1"
1919lazy_static = " 1.1"
2020tempfile = " 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 ]
2727cc = " 1.0"
Original file line number Diff line number Diff line change 11[package ]
22name = " lucet-spectest"
3- version = " 0.5.0 "
3+ version = " 0.5.1 "
44description = " Test harness to run WebAssembly spec tests (.wast) against the Lucet toolchain"
55homepage = " https://github.com/fastly/lucet"
66repository = " https://github.com/fastly/lucet"
@@ -17,10 +17,9 @@ name = "spec-test"
1717path = " 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" }
2423wabt = " 0.9.2"
2524serde = " 1.0"
2625serde_json = " 1.0"
Original file line number Diff line number Diff line change 11[package ]
22name = " lucet-validate"
3- version = " 0.5.0 "
3+ version = " 0.5.1 "
44description = " Parse and validate webassembly files against witx interface"
55homepage = " https://github.com/fastly/lucet"
66repository = " https://github.com/fastly/lucet"
@@ -24,7 +24,7 @@ thiserror = "1.0.4"
2424wasmparser = " 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 " }
2828tempfile = " 3.0"
2929wabt = " 0.9.2"
3030
You can’t perform that action at this time.
0 commit comments