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

Commit 9fc93a4

Browse files
authored
Merge pull request #400 from bytecodealliance/acf/exact-internal-deps
Use exact dependencies for crates within the repo
2 parents 08a10ca + efb6d57 commit 9fc93a4

File tree

9 files changed

+28
-28
lines changed

9 files changed

+28
-28
lines changed

lucet-objdump/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.0" }
1717

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

lucet-runtime/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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.0" }
15+
lucet-module = { path = "../lucet-module", version = "=0.5.0" }
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.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" }
2525
nix = "0.15"
2626
rayon = "1.0"
2727
tempfile = "3.0"

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.0" }
14+
lucet-runtime-macros = { path = "../lucet-runtime-macros", version = "=0.5.0" }
1515

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

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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.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" }
2525

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

lucet-spectest/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ path = "src/main.rs"
1818

1919
[dependencies]
2020
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" }
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" }
2424
wabt = "0.9.2"
2525
serde = "1.0"
2626
serde_json = "1.0"

lucet-validate/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ path = "src/main.rs"
2020
clap = "2"
2121
witx = { path = "../wasi/tools/witx", version = "0.6.0" }
2222
cranelift-entity = { path = "../cranelift/cranelift-entity", version = "0.51.0" }
23-
thiserror = "1.0.4"
23+
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.0" }
2828
tempfile = "3.0"
2929
wabt = "0.9.2"
3030

lucet-wasi-sdk/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ edition = "2018"
1111

1212
[dependencies]
1313
anyhow = "1"
14-
lucetc = { path = "../lucetc", version = "0.5.0" }
15-
lucet-module = { path = "../lucet-module", version = "0.5.0" }
14+
lucetc = { path = "../lucetc", version = "=0.5.0" }
15+
lucet-module = { path = "../lucet-module", version = "=0.5.0" }
1616
target-lexicon = "0.9"
1717
tempfile = "3.0"
1818
thiserror = "1.0.4"
1919

2020
[dev-dependencies]
21-
lucet-validate = { path = "../lucet-validate", version = "0.5.0" }
21+
lucet-validate = { path = "../lucet-validate", version = "=0.5.0" }

lucet-wasi/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ anyhow = "1"
2828
cast = "0.2"
2929
clap = "2.23"
3030
human-size = "0.4"
31-
lucet-runtime = { path = "../lucet-runtime", version = "0.5.0" }
32-
lucet-runtime-internals = { path = "../lucet-runtime/lucet-runtime-internals", version = "0.5.0" }
33-
lucet-module = { path = "../lucet-module", version = "0.5.0" }
31+
lucet-runtime = { path = "../lucet-runtime", version = "=0.5.0" }
32+
lucet-runtime-internals = { path = "../lucet-runtime/lucet-runtime-internals", version = "=0.5.0" }
33+
lucet-module = { path = "../lucet-module", version = "=0.5.0" }
3434
libc = "0.2.65"
3535
nix = "0.15"
3636
rand = "0.6"
3737
wasi-common = "0.7"
3838

3939
[dev-dependencies]
40-
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "0.5.0" }
41-
lucetc = { path = "../lucetc", version = "0.5.0" }
40+
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "=0.5.0" }
41+
lucetc = { path = "../lucetc", version = "=0.5.0" }
4242
tempfile = "3.0"
4343

4444
[build-dependencies]

lucetc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ cranelift-module = { path = "../cranelift/cranelift-module", version = "0.51.0"
2424
cranelift-faerie = { path = "../cranelift/cranelift-faerie", version = "0.51.0" }
2525
cranelift-wasm = { path = "../cranelift/cranelift-wasm", version = "0.51.0" }
2626
target-lexicon = "0.9"
27-
lucet-module = { path = "../lucet-module", version = "0.5.0" }
28-
lucet-validate = { path = "../lucet-validate", version = "0.5.0" }
27+
lucet-module = { path = "../lucet-module", version = "=0.5.0" }
28+
lucet-validate = { path = "../lucet-validate", version = "=0.5.0" }
2929
wasmparser = "0.39.1"
3030
clap="2.32"
3131
log = "0.4"
@@ -46,7 +46,7 @@ minisign = "0.5.11"
4646
memoffset = "0.5.1"
4747
serde = "1.0"
4848
serde_json = "1.0"
49-
thiserror = "1.0.4"
49+
thiserror = "1.0.4"
5050
raw-cpuid = "6.0.0"
5151

5252
[package.metadata.deb]

0 commit comments

Comments
 (0)