Skip to content

Commit 3c6c083

Browse files
committed
update icrc3 macros crates
1 parent 966e9e6 commit 3c6c083

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

Cargo.lock

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

src/icrc3_canisters/canisters/icrc3_example/impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ bity-ic-types ={ workspace = true }
1919
bity-ic-utils = { workspace = true }
2020
icrc3-example-api = { path = "../api" }
2121
bity-ic-icrc3 = { path = "../../../../icrc3" }
22+
bity-ic-icrc3-macros = { path = "../../../../icrc3_macros" }
2223

2324
ic-cdk = { workspace = true }
2425
ic-cdk-macros = { workspace = true }
@@ -29,5 +30,4 @@ sha2 = { workspace = true }
2930
icrc-ledger-types = { workspace = true }
3031
ic0 = { workspace = true }
3132
serde_bytes = { workspace = true }
32-
icrc3-macros = { path = "../../../../icrc3_macros" }
3333
lazy_static = { workspace = true }

src/icrc3_canisters/canisters/icrc3_example/impl/src/state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ use crate::utils::trace;
22

33
use bity_ic_canister_state_macros::canister_state;
44
use bity_ic_icrc3::transaction::{Hash, TransactionType};
5+
use bity_ic_icrc3_macros::icrc3_state;
56
use bity_ic_types::TimestampSeconds;
67
use bity_ic_types::{BuildVersion, Cycles, TimestampMillis};
78
use bity_ic_utils::env::{CanisterEnv, Environment};
89
use bity_ic_utils::memory::MemorySize;
910
use candid::Nat;
1011
use candid::{CandidType, Principal};
11-
use icrc3_macros::icrc3_state;
1212
use icrc_ledger_types::icrc::generic_value::ICRC3Value;
1313
use serde::{Deserialize, Serialize};
1414
use serde_bytes::ByteBuf;

src/icrc3_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "icrc3-macros"
2+
name = "bity-ic-icrc3-macros"
33
version = "0.1.0"
44
edition = "2021"
55
description = "Icrc3 macros"

0 commit comments

Comments
 (0)