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

Commit

Permalink
Merge pull request #400 from bytecodealliance/acf/exact-internal-deps
Browse files Browse the repository at this point in the history
Use exact dependencies for crates within the repo
  • Loading branch information
acfoltzer committed Jan 23, 2020
2 parents 08a10ca + efb6d57 commit 9fc93a4
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion lucet-objdump/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2018"
goblin="0.0.24"
byteorder="1.2.1"
colored="1.8.0"
lucet-module = { path = "../lucet-module", version = "0.5.0" }
lucet-module = { path = "../lucet-module", version = "=0.5.0" }

[package.metadata.deb]
name = "fst-lucet-objdump"
Expand Down
10 changes: 5 additions & 5 deletions lucet-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ edition = "2018"

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

[dev-dependencies]
byteorder = "1.2"
lazy_static = "1.1"
lucetc = { path = "../lucetc", version = "0.5.0" }
lucet-runtime-tests = { path = "lucet-runtime-tests", version = "0.5.0" }
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "0.5.0" }
lucetc = { path = "../lucetc", version = "=0.5.0" }
lucet-runtime-tests = { path = "lucet-runtime-tests", version = "=0.5.0" }
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "=0.5.0" }
nix = "0.15"
rayon = "1.0"
tempfile = "3.0"
Expand Down
4 changes: 2 additions & 2 deletions lucet-runtime/lucet-runtime-internals/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ authors = ["Lucet team <lucet@fastly.com>"]
edition = "2018"

[dependencies]
lucet-module = { path = "../../lucet-module", version = "0.5.0" }
lucet-runtime-macros = { path = "../lucet-runtime-macros", version = "0.5.0" }
lucet-module = { path = "../../lucet-module", version = "=0.5.0" }
lucet-runtime-macros = { path = "../lucet-runtime-macros", version = "=0.5.0" }

anyhow = "1.0"
bitflags = "1.0"
Expand Down
8 changes: 4 additions & 4 deletions lucet-runtime/lucet-runtime-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ test = false
anyhow = "1"
lazy_static = "1.1"
tempfile = "3.0"
lucet-module = { path = "../../lucet-module", version = "0.5.0" }
lucet-runtime-internals = { path = "../lucet-runtime-internals", version = "0.5.0" }
lucet-wasi-sdk = { path = "../../lucet-wasi-sdk", version = "0.5.0" }
lucetc = { path = "../../lucetc", version = "0.5.0" }
lucet-module = { path = "../../lucet-module", version = "=0.5.0" }
lucet-runtime-internals = { path = "../lucet-runtime-internals", version = "=0.5.0" }
lucet-wasi-sdk = { path = "../../lucet-wasi-sdk", version = "=0.5.0" }
lucetc = { path = "../../lucetc", version = "=0.5.0" }

[build-dependencies]
cc = "1.0"
6 changes: 3 additions & 3 deletions lucet-spectest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ path = "src/main.rs"

[dependencies]
anyhow = "1"
lucetc = { path = "../lucetc", version = "0.5.0" }
lucet-module = { path = "../lucet-module", version = "0.5.0" }
lucet-runtime = { path = "../lucet-runtime", version = "0.5.0" }
lucetc = { path = "../lucetc", version = "=0.5.0" }
lucet-module = { path = "../lucet-module", version = "=0.5.0" }
lucet-runtime = { path = "../lucet-runtime", version = "=0.5.0" }
wabt = "0.9.2"
serde = "1.0"
serde_json = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions lucet-validate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ path = "src/main.rs"
clap = "2"
witx = { path = "../wasi/tools/witx", version = "0.6.0" }
cranelift-entity = { path = "../cranelift/cranelift-entity", version = "0.51.0" }
thiserror = "1.0.4"
thiserror = "1.0.4"
wasmparser = "0.39.1"

[dev-dependencies]
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "0.5.0" }
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "=0.5.0" }
tempfile = "3.0"
wabt = "0.9.2"

Expand Down
6 changes: 3 additions & 3 deletions lucet-wasi-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ edition = "2018"

[dependencies]
anyhow = "1"
lucetc = { path = "../lucetc", version = "0.5.0" }
lucet-module = { path = "../lucet-module", version = "0.5.0" }
lucetc = { path = "../lucetc", version = "=0.5.0" }
lucet-module = { path = "../lucet-module", version = "=0.5.0" }
target-lexicon = "0.9"
tempfile = "3.0"
thiserror = "1.0.4"

[dev-dependencies]
lucet-validate = { path = "../lucet-validate", version = "0.5.0" }
lucet-validate = { path = "../lucet-validate", version = "=0.5.0" }
10 changes: 5 additions & 5 deletions lucet-wasi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ anyhow = "1"
cast = "0.2"
clap = "2.23"
human-size = "0.4"
lucet-runtime = { path = "../lucet-runtime", version = "0.5.0" }
lucet-runtime-internals = { path = "../lucet-runtime/lucet-runtime-internals", version = "0.5.0" }
lucet-module = { path = "../lucet-module", version = "0.5.0" }
lucet-runtime = { path = "../lucet-runtime", version = "=0.5.0" }
lucet-runtime-internals = { path = "../lucet-runtime/lucet-runtime-internals", version = "=0.5.0" }
lucet-module = { path = "../lucet-module", version = "=0.5.0" }
libc = "0.2.65"
nix = "0.15"
rand = "0.6"
wasi-common = "0.7"

[dev-dependencies]
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "0.5.0" }
lucetc = { path = "../lucetc", version = "0.5.0" }
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "=0.5.0" }
lucetc = { path = "../lucetc", version = "=0.5.0" }
tempfile = "3.0"

[build-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions lucetc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ cranelift-module = { path = "../cranelift/cranelift-module", version = "0.51.0"
cranelift-faerie = { path = "../cranelift/cranelift-faerie", version = "0.51.0" }
cranelift-wasm = { path = "../cranelift/cranelift-wasm", version = "0.51.0" }
target-lexicon = "0.9"
lucet-module = { path = "../lucet-module", version = "0.5.0" }
lucet-validate = { path = "../lucet-validate", version = "0.5.0" }
lucet-module = { path = "../lucet-module", version = "=0.5.0" }
lucet-validate = { path = "../lucet-validate", version = "=0.5.0" }
wasmparser = "0.39.1"
clap="2.32"
log = "0.4"
Expand All @@ -46,7 +46,7 @@ minisign = "0.5.11"
memoffset = "0.5.1"
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0.4"
thiserror = "1.0.4"
raw-cpuid = "6.0.0"

[package.metadata.deb]
Expand Down

0 comments on commit 9fc93a4

Please sign in to comment.