From 94dab5cc83b48cdf2ae0c8112afdca4d7e571ee8 Mon Sep 17 00:00:00 2001 From: shaorongqiang <26101255+shaorongqiang@users.noreply.github.com> Date: Sat, 13 May 2023 15:59:09 +0800 Subject: [PATCH] update dependencies (#959) --- Cargo.toml | 1 + src/components/abciapp/Cargo.toml | 4 ++-- src/components/config/Cargo.toml | 2 +- src/components/contracts/primitives/types/Cargo.toml | 2 +- src/components/finutils/Cargo.toml | 6 +++--- src/components/wallet_mobile/Cargo.toml | 6 +++--- src/components/wasm/Cargo.toml | 6 +++--- src/ledger/Cargo.toml | 12 ++++++------ 8 files changed, 20 insertions(+), 19 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 60e0d1064..1ee579fa2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,7 @@ members = [ "src/components/contracts/modules/evm/precompile/frc20", "src/components/contracts/modules/evm/precompile/modexp", "src/components/contracts/modules/evm/precompile/sha3fips", + "src/components/contracts/modules/evm/precompile/anemoi", "src/components/contracts/modules/evm/precompile/utils", "src/components/contracts/modules/evm/precompile/utils/macro", "src/components/contracts/modules/xhub", diff --git a/src/components/abciapp/Cargo.toml b/src/components/abciapp/Cargo.toml index f98a00e0f..930e9c4e5 100644 --- a/src/components/abciapp/Cargo.toml +++ b/src/components/abciapp/Cargo.toml @@ -47,8 +47,8 @@ abci = { git = "https://github.com/FindoraNetwork/tendermint-abci", tag = "0.7.6 config = { path = "../config"} ledger = { path = "../../ledger" } -globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", branch = "main" } -cryptohash = { git = "https://github.com/FindoraNetwork/platform-lib-cryptohash", branch = "main" } +globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", tag = "v1.0.0" } +cryptohash = { git = "https://github.com/FindoraNetwork/platform-lib-cryptohash", tag = "v1.0.0" } finutils = { path = "../finutils" } diff --git a/src/components/config/Cargo.toml b/src/components/config/Cargo.toml index 0f2d47461..ec2670aee 100644 --- a/src/components/config/Cargo.toml +++ b/src/components/config/Cargo.toml @@ -16,7 +16,7 @@ serde_json = "1.0" serde-strz = "1.1.1" toml = "0.5.8" -globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", branch = "main" } +globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", tag = "v1.0.0" } [target.'cfg(target_os= "linux")'.dependencies] btm = "0.1.6" diff --git a/src/components/contracts/primitives/types/Cargo.toml b/src/components/contracts/primitives/types/Cargo.toml index 3d5236f90..8b974d520 100644 --- a/src/components/contracts/primitives/types/Cargo.toml +++ b/src/components/contracts/primitives/types/Cargo.toml @@ -13,7 +13,7 @@ bech32 = "0.7.2" ethereum = { version = "0.12.0", default-features = false, features = ["with-serde"] } hex = "0.4.2" -globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", branch = "main" } +globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", tag = "v1.0.0" } libsecp256k1 = { version = "0.7", features = ["static-context", "hmac"] } primitive-types = { version = "0.11.1", default-features = false, features = ["rlp", "byteorder", "serde"] } diff --git a/src/components/finutils/Cargo.toml b/src/components/finutils/Cargo.toml index 283ea4cd9..1c0f0c7a3 100644 --- a/src/components/finutils/Cargo.toml +++ b/src/components/finutils/Cargo.toml @@ -28,8 +28,8 @@ nix = "0.25" ledger = { path = "../../ledger" } -globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", branch = "main" } -credentials = { git = "https://github.com/FindoraNetwork/platform-lib-credentials", branch = "main" } +globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", tag = "v1.0.0" } +credentials = { git = "https://github.com/FindoraNetwork/platform-lib-credentials", tag = "v1.0.0" } eth_checksum = { version = "0.1.2", optional = true } fp-core = { path = "../contracts/primitives/core", default-features = false } @@ -41,7 +41,7 @@ tendermint-rpc = { git = "https://github.com/FindoraNetwork/tendermint-rs", feat [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # chaindev = { path = "../../../../chaindev" } -chaindev = { git = "https://github.com/rust-util-collections/chaindev", tag = "tm33v21", default-features = false, features = ["tendermint_based", "vsdb_sled_engine"] } +chaindev = { git = "https://github.com/FindoraNetwork/chaindev", branch = "platform", default-features = false, features = ["tendermint_based", "vsdb_sled_engine"] } [dev-dependencies] diff --git a/src/components/wallet_mobile/Cargo.toml b/src/components/wallet_mobile/Cargo.toml index faa437f48..46ea6f1cd 100644 --- a/src/components/wallet_mobile/Cargo.toml +++ b/src/components/wallet_mobile/Cargo.toml @@ -37,9 +37,9 @@ zei = { git = "https://github.com/FindoraNetwork/zei", branch = "stable-main" } finutils = { path = "../finutils", default-features = false, features = []} fp-types = { path = "../contracts/primitives/types" } fp-utils = { path = "../contracts/primitives/utils" } -globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", branch = "main" } -credentials = { git = "https://github.com/FindoraNetwork/platform-lib-credentials", branch = "main" } -cryptohash = { git = "https://github.com/FindoraNetwork/platform-lib-cryptohash", branch = "main" } +globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", tag = "v1.0.0" } +credentials = { git = "https://github.com/FindoraNetwork/platform-lib-credentials", tag = "v1.0.0" } +cryptohash = { git = "https://github.com/FindoraNetwork/platform-lib-cryptohash", tag = "v1.0.0" } ledger = { path = "../../ledger" } diff --git a/src/components/wasm/Cargo.toml b/src/components/wasm/Cargo.toml index fdc45ecad..de2e9f212 100644 --- a/src/components/wasm/Cargo.toml +++ b/src/components/wasm/Cargo.toml @@ -38,9 +38,9 @@ ruc = "1.0" finutils = { path = "../finutils", default-features = false } -globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", branch = "main" } -credentials = { git = "https://github.com/FindoraNetwork/platform-lib-credentials", branch = "main" } -cryptohash = { git = "https://github.com/FindoraNetwork/platform-lib-cryptohash", branch = "main" } +globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", tag = "v1.0.0" } +credentials = { git = "https://github.com/FindoraNetwork/platform-lib-credentials", tag = "v1.0.0" } +cryptohash = { git = "https://github.com/FindoraNetwork/platform-lib-cryptohash", tag = "v1.0.0" } ledger = { path = "../../ledger" } diff --git a/src/ledger/Cargo.toml b/src/ledger/Cargo.toml index ab93261b3..2829a9c7a 100644 --- a/src/ledger/Cargo.toml +++ b/src/ledger/Cargo.toml @@ -39,12 +39,12 @@ fbnc = { version = "0.2.9", default-features = false} num-bigint = "0.4.3" -globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", branch = "main" } -bitmap = { git = "https://github.com/FindoraNetwork/platform-lib-bitmap", branch = "main" } -cryptohash = { git = "https://github.com/FindoraNetwork/platform-lib-cryptohash", branch = "main" } -credentials = { git = "https://github.com/FindoraNetwork/platform-lib-credentials", branch = "main" } -merkle_tree = { git = "https://github.com/FindoraNetwork/platform-lib-merkle", branch = "main" } -sliding_set = { git = "https://github.com/FindoraNetwork/platform-lib-slidingset", branch = "main" } +globutils = { git = "https://github.com/FindoraNetwork/platform-lib-utils", tag = "v1.0.0" } +bitmap = { git = "https://github.com/FindoraNetwork/platform-lib-bitmap", tag = "v1.0.0" } +cryptohash = { git = "https://github.com/FindoraNetwork/platform-lib-cryptohash", tag = "v1.0.0" } +credentials = { git = "https://github.com/FindoraNetwork/platform-lib-credentials", tag = "v1.0.0" } +merkle_tree = { git = "https://github.com/FindoraNetwork/platform-lib-merkle", tag = "v1.0.0" } +sliding_set = { git = "https://github.com/FindoraNetwork/platform-lib-slidingset", tag = "v1.0.0" } [features] default = []