Skip to content

Commit 14d2283

Browse files
committed
chore: improve for vetkey
1 parent 292f119 commit 14d2283

File tree

10 files changed

+60
-100
lines changed

10 files changed

+60
-100
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ strip = true
1414
opt-level = 's'
1515

1616
[workspace.package]
17-
version = "0.8.6"
17+
version = "0.8.7"
1818
edition = "2021"
1919
repository = "https://github.com/ldclabs/ic-cose"
2020
keywords = ["config", "cbor", "canister", "icp", "encryption"]
@@ -28,7 +28,6 @@ ciborium = "0.2"
2828
futures = "0.3"
2929
serde = "1"
3030
serde_bytes = "0.11"
31-
serde_with = "3.12"
3231
k256 = { version = "0.13", features = ["ecdsa", "schnorr"] }
3332
ed25519-consensus = "2.1"
3433
ed25519-dalek = "2"
@@ -52,7 +51,6 @@ ic-vetkeys = "0.2"
5251
rand = "0.9"
5352
coset = "0.3"
5453
aes-gcm = "0.10"
55-
thiserror = "2"
5654
ic-secp256k1 = { version = "0.1" }
5755
ic-ed25519 = { version = "0.2" }
5856
ic-dummy-getrandom-for-wasm = "0.1"

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ test:
1414

1515
# cargo install ic-wasm
1616
build-wasm:
17-
@cargo build --release --target wasm32-unknown-unknown --package ic_cose_canister --package ic_wasm_canister
17+
@cargo build --release --target wasm32-unknown-unknown -p ic_cose_canister -p ic_wasm_canister
18+
19+
build-wasm64:
20+
@cargo +nightly build -Z build-std=std,panic_abort --target wasm64-unknown-unknown --release -p ic_cose_canister -p ic_wasm_canister
1821

1922
# cargo install candid-extractor
2023
build-did:

src/ic_cose/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ license.workspace = true
1313
ic_cose_types = { path = "../ic_cose_types", version = "0.8" }
1414
async-trait = { workspace = true }
1515
candid = { workspace = true }
16+
futures = { workspace = true }
1617
serde_bytes = { workspace = true }
1718
rand = { workspace = true }
1819
ic-agent = { workspace = true }

0 commit comments

Comments
 (0)