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

Commit e40c7eb

Browse files
committed
use exact dependencies for crates within the repo
Same idea as #400; this will mean fewer weird edge cases for end users if we have to yank any of these crates in the future.
1 parent 9a48e89 commit e40c7eb

File tree

9 files changed

+25
-25
lines changed

9 files changed

+25
-25
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.4.3" }
16+
lucet-module = { path = "../lucet-module", version = "=0.4.3" }
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,18 +11,18 @@ edition = "2018"
1111

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

1919
[dev-dependencies]
2020
byteorder = "1.2"
2121
failure = "0.1"
2222
lazy_static = "1.1"
23-
lucetc = { path = "../lucetc", version = "0.4.3" }
24-
lucet-runtime-tests = { path = "lucet-runtime-tests", version = "0.4.3" }
25-
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "0.4.3" }
23+
lucetc = { path = "../lucetc", version = "=0.4.3" }
24+
lucet-runtime-tests = { path = "lucet-runtime-tests", version = "=0.4.3" }
25+
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "=0.4.3" }
2626
nix = "0.13"
2727
rayon = "1.0"
2828
tempfile = "3.0"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = ["Lucet team <[email protected]>"]
1010
edition = "2018"
1111

1212
[dependencies]
13-
lucet-module = { path = "../../lucet-module", version = "0.4.3" }
13+
lucet-module = { path = "../../lucet-module", version = "=0.4.3" }
1414

1515
bitflags = "1.0"
1616
bincode = "1.1.4"

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
failure = "0.1"
1919
lazy_static = "1.1"
2020
tempfile = "3.0"
21-
lucet-module = { path = "../../lucet-module", version = "0.4.3" }
22-
lucet-runtime-internals = { path = "../lucet-runtime-internals", version = "0.4.3" }
23-
lucet-wasi-sdk = { path = "../../lucet-wasi-sdk", version = "0.4.3" }
24-
lucetc = { path = "../../lucetc", version = "0.4.3" }
21+
lucet-module = { path = "../../lucet-module", version = "=0.4.3" }
22+
lucet-runtime-internals = { path = "../lucet-runtime-internals", version = "=0.4.3" }
23+
lucet-wasi-sdk = { path = "../../lucet-wasi-sdk", version = "=0.4.3" }
24+
lucetc = { path = "../../lucetc", version = "=0.4.3" }
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
@@ -17,9 +17,9 @@ name = "spec-test"
1717
path = "src/main.rs"
1818

1919
[dependencies]
20-
lucetc = { path = "../lucetc", version = "0.4.3" }
21-
lucet-module = { path = "../lucet-module", version = "0.4.3" }
22-
lucet-runtime = { path = "../lucet-runtime", version = "0.4.3" }
20+
lucetc = { path = "../lucetc", version = "=0.4.3" }
21+
lucet-module = { path = "../lucet-module", version = "=0.4.3" }
22+
lucet-runtime = { path = "../lucet-runtime", version = "=0.4.3" }
2323
wabt = "0.9.2"
2424
serde = "1.0"
2525
serde_json = "1.0"

lucet-validate/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cranelift-entity = { path = "../cranelift/cranelift-entity", version = "0.46.1"
2424
wasmparser = "0.39.1"
2525

2626
[dev-dependencies]
27-
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "0.4.3" }
27+
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "=0.4.3" }
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,9 +11,9 @@ edition = "2018"
1111

1212
[dependencies]
1313
failure = "0.1"
14-
lucetc = { path = "../lucetc", version = "0.4.3" }
15-
lucet-module = { path = "../lucet-module", version = "0.4.3" }
14+
lucetc = { path = "../lucetc", version = "=0.4.3" }
15+
lucet-module = { path = "../lucet-module", version = "=0.4.3" }
1616
tempfile = "3.0"
1717

1818
[dev-dependencies]
19-
lucet-validate = { path = "../lucet-validate", version = "0.4.3" }
19+
lucet-validate = { path = "../lucet-validate", version = "=0.4.3" }

lucet-wasi/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ clap = "2.23"
2929
failure = "0.1"
3030
human-size = "0.4"
3131
libc = "=0.2.59"
32-
lucet-runtime = { path = "../lucet-runtime", version = "0.4.3" }
33-
lucet-runtime-internals = { path = "../lucet-runtime/lucet-runtime-internals", version = "0.4.3" }
34-
lucet-module = { path = "../lucet-module", version = "0.4.3" }
32+
lucet-runtime = { path = "../lucet-runtime", version = "=0.4.3" }
33+
lucet-runtime-internals = { path = "../lucet-runtime/lucet-runtime-internals", version = "=0.4.3" }
34+
lucet-module = { path = "../lucet-module", version = "=0.4.3" }
3535
nix = "0.13"
3636
rand = "0.6"
3737

3838
[dev-dependencies]
39-
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "0.4.3" }
40-
lucetc = { path = "../lucetc", version = "0.4.3" }
39+
lucet-wasi-sdk = { path = "../lucet-wasi-sdk", version = "=0.4.3" }
40+
lucetc = { path = "../lucetc", version = "=0.4.3" }
4141
tempfile = "3.0"
4242

4343
[build-dependencies]

lucetc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ cranelift-module = { path = "../cranelift/cranelift-module", version = "0.46.1"
2323
cranelift-faerie = { path = "../cranelift/cranelift-faerie", version = "0.46.1" }
2424
cranelift-wasm = { path = "../cranelift/cranelift-wasm", version = "0.46.1" }
2525
target-lexicon = "0.8.0"
26-
lucet-module = { path = "../lucet-module", version = "0.4.3" }
27-
lucet-validate = { path = "../lucet-validate", version = "0.4.3" }
26+
lucet-module = { path = "../lucet-module", version = "=0.4.3" }
27+
lucet-validate = { path = "../lucet-validate", version = "=0.4.3" }
2828
wasmparser = "0.39.1"
2929
clap="2.32"
3030
log = "0.4"

0 commit comments

Comments
 (0)