Skip to content

Commit 4d1fbd4

Browse files
authored
fix(build): fix release script upload order (#305)
1 parent 4edf896 commit 4d1fbd4

File tree

7 files changed

+1
-26
lines changed

7 files changed

+1
-26
lines changed

Cargo.lock

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/contracts/core/derive/Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,12 @@ repository.workspace = true
99
homepage.workspace = true
1010
categories = ["cryptography::cryptocurrencies", "wasm"]
1111
keywords = ["cosmos", "cosmwasm", "cycles", "quartz", "sgx"]
12-
readme = "README.md"
1312
description = """
1413
Derive macros for Quartz contracts.
1514
"""
1615

1716
[dependencies]
18-
proc-macro2 = "1.0"
19-
quartz-contract-core.workspace = true
2017
quote = "1.0"
21-
serde_json.workspace = true
22-
sha2.workspace = true
2318
syn = { version = "1.0", features = ["full"] }
2419

2520
[lib]

examples/pingpong/contracts/Cargo.lock

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/pingpong/enclave/Cargo.lock

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/transfers/contracts/Cargo.lock

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/transfers/enclave/Cargo.lock

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set -e
1818
# A space-separated list of all the crates we want to publish, in the order in
1919
# which they must be published. It's important to respect this order, since
2020
# each subsequent crate depends on one or more of the preceding ones.
21-
DEFAULT_CRATES="cw-client quartz-dcap-verifier-msgs quartz-tcbinfo-msgs quartz-tee-ra quartz-contract-core quartz-cw-proof quartz-proto quartz-tm-stateless-verifier quartz-enclave-core quartz-common quartz-tm-prover quartz-print-fmspc quartz-dcap-verifier quartz-tcbinfo quartz-rs"
21+
DEFAULT_CRATES="cw-client quartz-dcap-verifier-msgs quartz-tcbinfo-msgs quartz-tee-ra quartz-contract-core-derive quartz-contract-core quartz-cw-proof quartz-proto quartz-tm-stateless-verifier quartz-tm-prover quartz-enclave-core quartz-common quartz-print-fmspc quartz-dcap-verifier quartz-tcbinfo quartz-rs"
2222

2323
# Allows us to override the crates we want to publish.
2424
CRATES=${*:-${DEFAULT_CRATES}}

0 commit comments

Comments
 (0)