Skip to content

Commit

Permalink
update dependencies (#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaorongqiang authored May 13, 2023
1 parent e9c881e commit 94dab5c
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 19 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions src/components/abciapp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down
2 changes: 1 addition & 1 deletion src/components/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/components/contracts/primitives/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
6 changes: 3 additions & 3 deletions src/components/finutils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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]

Expand Down
6 changes: 3 additions & 3 deletions src/components/wallet_mobile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down
6 changes: 3 additions & 3 deletions src/components/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down
12 changes: 6 additions & 6 deletions src/ledger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand Down

0 comments on commit 94dab5c

Please sign in to comment.