From bfa2fd9887cb9a4334e56e593cdf3305ab6bbef7 Mon Sep 17 00:00:00 2001 From: Maxim Date: Wed, 24 Jul 2024 15:37:35 +0900 Subject: [PATCH] Update canister-sdk 0.18 -> 0.19 --- Cargo.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 54b98385..5fe0af40 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ homepage = "https://github.com/bitfinity-network/bitfinity-evm-sdk" include = ["src/**/*", "LICENSE", "README.md"] license = "MIT" repository = "https://github.com/bitfinity-network/bitfinity-evm-sdk" -version = "0.28.0" +version = "0.29.0" [workspace.dependencies] alloy-primitives = { version = "0.7", default-features = false } @@ -36,18 +36,18 @@ candid = "0.10" clap = { version = "4", features = ["derive", "env"] } chrono = { version = "0.4", default-features = false } derive_more = "0.99" -env_logger = { version = "0.11.0", default-features = false } +env_logger = { version = "0.11.4", default-features = false } ethereum-types = "0.14" ethers-core = "2.0" futures = { version = "0.3", default-features = false } hex = "0.4" # Newer version 0.13.3 breakes backward compatibility. Add this temporary fix until pocket-ic or ic-cdk crates are fixed. ic-cdk = "=0.13.2" -ic-canister = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-canister", tag = "v0.18.x" } -ic-canister-client = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-canister-client", tag = "v0.18.x" } -ic-exports = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-exports", tag = "v0.18.x" } -ic-log = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-log", tag = "v0.18.x" } -ic-stable-structures = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-stable-structures", tag = "v0.18.x" } +ic-canister = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-canister", tag = "v0.19.x" } +ic-canister-client = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-canister-client", tag = "v0.19.x" } +ic-exports = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-exports", tag = "v0.19.x" } +ic-log = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-log", tag = "v0.19.x" } +ic-stable-structures = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-stable-structures", tag = "v0.19.x" } itertools = "0.13" jsonrpc-core = "18.0" jsonrpsee = { version = "0.23", features = ["server", "macros"] }