Skip to content
This repository was archived by the owner on Mar 24, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
151 changes: 64 additions & 87 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Lucet version 0.2.1
# Lucet version 0.3.0

[workspace]
members = [
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/lucet-benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lucet-benchmarks"
version = "0.2.1"
version = "0.3.0"
description = "Benchmarks for the Lucet runtime"
homepage = "https://github.com/fastly/lucet"
repository = "https://github.com/fastly/lucet"
Expand Down
2 changes: 1 addition & 1 deletion lucet-module/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lucet-module"
version = "0.2.1"
version = "0.3.0"
description = "A structured interface for Lucet modules"
homepage = "https://github.com/fastly/lucet"
repository = "https://github.com/fastly/lucet"
Expand Down
4 changes: 2 additions & 2 deletions lucet-objdump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lucet-objdump"
version = "0.2.1"
version = "0.3.0"
description = "Analyze object files emitted by the Lucet compiler"
homepage = "https://github.com/fastly/lucet"
repository = "https://github.com/fastly/lucet"
Expand All @@ -13,7 +13,7 @@ edition = "2018"
goblin="0.0.24"
byteorder="1.2.1"
colored="1.6.1"
lucet-module = { path = "../lucet-module", version = "0.2.1" }
lucet-module = { path = "../lucet-module", version = "0.3.0" }

[package.metadata.deb]
name = "fst-lucet-objdump"
Expand Down
12 changes: 6 additions & 6 deletions lucet-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lucet-runtime"
version = "0.2.1"
version = "0.3.0"
description = "Pure Rust runtime for Lucet WebAssembly toolchain"
homepage = "https://github.com/fastly/lucet"
repository = "https://github.com/fastly/lucet"
Expand All @@ -11,18 +11,18 @@ edition = "2018"

[dependencies]
libc = "=0.2.59"
lucet-runtime-internals = { path = "lucet-runtime-internals", version = "0.2.1" }
lucet-module = { path = "../lucet-module", version = "0.2.1" }
lucet-runtime-internals = { path = "lucet-runtime-internals", version = "0.3.0" }
lucet-module = { path = "../lucet-module", version = "0.3.0" }
num-traits = "0.2"
num-derive = "0.2"

[dev-dependencies]
byteorder = "1.2"
failure = "0.1"
lazy_static = "1.1"
lucetc = { path = "../lucetc", version = "0.2.1" }
lucet-runtime-tests = { path = "lucet-runtime-tests", version = "0.2.1" }
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "0.2.1" }
lucetc = { path = "../lucetc", version = "0.3.0" }
lucet-runtime-tests = { path = "lucet-runtime-tests", version = "0.3.0" }
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "0.3.0" }
nix = "0.13"
rayon = "1.0"
tempfile = "3.0"
Expand Down
Loading