Skip to content

Commit dd1d1e1

Browse files
authored
Merge pull request #449 from Chia-Network/meta-crate-versioning
2 parents f6289db + e05007c commit dd1d1e1

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/build-crate-and-npm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
path: ./target/package/*-*.crate
4444

4545
- name: install wasm-pack
46-
run: cargo install wasm-pack
46+
run: cargo install wasm-pack --locked
4747

4848
- name: wasm-pack build and pack
4949
run: cd wasm && wasm-pack build && wasm-pack pack
@@ -153,7 +153,7 @@ jobs:
153153
run: |
154154
cd crates/chia-ssl
155155
cargo publish
156-
156+
157157
- name: publish to crates.io if tagged (chia-consensus)
158158
continue-on-error: true
159159
if: startsWith(github.event.ref, 'refs/tags')

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ jobs:
369369
- name: Prepare for coverage
370370
if: matrix.os == 'ubuntu-latest'
371371
run: |
372-
cargo install grcov
372+
cargo install grcov --locked
373373
echo "RUSTFLAGS=-Cinstrument-coverage" >> "$GITHUB_ENV"
374374
echo "LLVM_PROFILE_FILE=$(pwd)/target/chia_rs-%p-%m.profraw" >> "$GITHUB_ENV"
375375
echo "CARGO_TARGET_DIR=$(pwd)/target" >> "$GITHUB_ENV"

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ clvm-traits = ["dep:clvm-traits"]
6060
clvm-utils = ["dep:clvm-utils"]
6161

6262
[dependencies]
63-
chia-bls = { path = "./crates/chia-bls", optional = true }
64-
chia-client = { path = "./crates/chia-client", optional = true }
65-
chia-consensus = { path = "./crates/chia-consensus", optional = true }
66-
chia-protocol = { path = "./crates/chia-protocol", optional = true }
67-
chia-ssl = { path = "./crates/chia-ssl", optional = true }
68-
chia-traits = { path = "./crates/chia-traits", optional = true }
69-
chia-wallet = { path = "./crates/chia-wallet", optional = true }
70-
clvm-traits = { path = "./crates/clvm-traits", optional = true }
71-
clvm-utils = { path = "./crates/clvm-utils", optional = true }
63+
chia-bls = { path = "./crates/chia-bls", version = "0.6.0", optional = true }
64+
chia-client = { path = "./crates/chia-client", version = "0.6.0", optional = true }
65+
chia-consensus = { path = "./crates/chia-consensus", version = "0.6.1", optional = true }
66+
chia-protocol = { path = "./crates/chia-protocol", version = "0.6.0", optional = true }
67+
chia-ssl = { path = "./crates/chia-ssl", version = "0.6.0", optional = true }
68+
chia-traits = { path = "./crates/chia-traits", version = "0.6.0", optional = true }
69+
chia-wallet = { path = "./crates/chia-wallet", version = "0.6.0", optional = true }
70+
clvm-traits = { path = "./crates/clvm-traits", version = "0.6.0", optional = true }
71+
clvm-utils = { path = "./crates/clvm-utils", version = "0.6.0", optional = true }
7272

7373
[profile.release]
7474
lto = "thin"

wasm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Build
66
Use `wasm-pack` to build the wasm `pkg` file used with npm. Install it with:
77

88
```
9-
$ cargo install wasm-pack
9+
$ cargo install wasm-pack --locked
1010
```
1111

1212
Then build with

0 commit comments

Comments
 (0)