From ae78d17f8a849164cf326ec9aea4fe641e8a5b99 Mon Sep 17 00:00:00 2001 From: MOZGIII Date: Sat, 22 Apr 2023 00:46:43 -0300 Subject: [PATCH] Switch to workspace dependencies --- Cargo.toml | 150 ++++++++++++++++ crates/author-ext-api/Cargo.toml | 8 +- crates/author-ext-rpc/Cargo.toml | 24 +-- crates/bioauth-flow-api/Cargo.toml | 8 +- crates/bioauth-flow-rpc/Cargo.toml | 36 ++-- crates/bioauth-keys/Cargo.toml | 6 +- crates/crypto-utils/Cargo.toml | 10 +- crates/devutil-auth-ticket/Cargo.toml | 8 +- crates/eip191-crypto/Cargo.toml | 12 +- crates/eip191-token-claim/Cargo.toml | 10 +- crates/eip712-account-claim/Cargo.toml | 6 +- crates/eip712-common-test-utils/Cargo.toml | 14 +- crates/eip712-common/Cargo.toml | 12 +- crates/eip712-token-claim/Cargo.toml | 6 +- crates/facetec-api-client/Cargo.toml | 18 +- crates/humanode-peer/Cargo.toml | 160 ++++++++--------- crates/humanode-rpc/Cargo.toml | 72 ++++---- crates/humanode-runtime/Cargo.toml | 166 +++++++++--------- crates/keystore-bioauth-account-id/Cargo.toml | 12 +- crates/ngrok-api/Cargo.toml | 16 +- crates/pallet-bioauth/Cargo.toml | 26 +-- crates/pallet-bootnodes/Cargo.toml | 24 +-- crates/pallet-chain-properties/Cargo.toml | 14 +- crates/pallet-chain-start-moment/Cargo.toml | 12 +- crates/pallet-ethereum-chain-id/Cargo.toml | 14 +- crates/pallet-evm-accounts-mapping/Cargo.toml | 20 +-- crates/pallet-humanode-session/Cargo.toml | 20 +-- crates/pallet-pot/Cargo.toml | 14 +- crates/pallet-token-claims/Cargo.toml | 26 +-- crates/pallet-vesting/Cargo.toml | 22 +-- crates/precompile-bioauth/Cargo.toml | 30 ++-- .../Cargo.toml | 26 +-- crates/precompile-utils/Cargo.toml | 30 ++-- crates/precompile-utils/macro/Cargo.toml | 10 +- crates/primitives-auth-ticket/Cargo.toml | 8 +- crates/primitives-ethereum/Cargo.toml | 14 +- crates/primitives-liveness-data/Cargo.toml | 6 +- crates/robonode-client/Cargo.toml | 14 +- crates/robonode-crypto/Cargo.toml | 6 +- crates/robonode-keygen/Cargo.toml | 6 +- crates/robonode-server/Cargo.toml | 36 ++-- crates/rpc-deny-unsafe/Cargo.toml | 2 +- crates/rpc-error-response/Cargo.toml | 4 +- crates/rpc-validator-key-logic/Cargo.toml | 10 +- crates/vesting-schedule-linear/Cargo.toml | 12 +- .../vesting-scheduling-timestamp/Cargo.toml | 14 +- 46 files changed, 660 insertions(+), 514 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 47627ccad..b367c77fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,156 @@ resolver = "2" members = ["crates/*"] +[workspace.dependencies] +# Crates.io deps. +anyhow = "1" +assert_matches = "1.5" +async-trait = "0.1" +bip32 = "0.5.0" +bytes = "1" +chrono = "0.4" +clap = "4" +ed25519-dalek = "1" +ethers-core = "2.0.3" +evm = "0.37" +fdlimit = "0.2" +futures = "0.3" +getrandom = "0.2" +hex = "0.4" +hex-literal = "0.4" +http = "0.2" +http-body = "0.4" +impl-trait-for-tuples = "0.2" +indoc = "2.0" +jsonrpsee = "0.16.2" +libsecp256k1 = "0.7" +log = "0.4" +mockall = "0.11" +num = "0.4" +num_enum = "0.6" +num-traits = "0.2" +numtoa = "0.2" +once_cell = "1" +proc-macro2 = "1" +qr2term = "0.3" +quote = "1.0" +rand = "0.7" +reqwest = "0.11" +rustc-hex = "2" +scale-info = "2.5.0" +secp256k1 = "0.27" +serde = "1" +serde_json = "1" +sha3 = "0.10" +similar-asserts = "1" +static_assertions = "1" +syn = "1" +thiserror = "1.0.29" +tiny-bip39 = "1" +tokio = "1" +tracing = "0.1" +tracing-test = "0.2" +url = "2" +uuid = "1" +vergen = "8" +warp = "0.3" +wiremock = "0.5" + +# Special case for codec. +codec = { package = "parity-scale-codec", version = "3.2.2" } + +# Substrate fork. +frame-benchmarking = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +frame-benchmarking-cli = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +frame-executive = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +frame-support = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +frame-system = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +frame-system-benchmarking = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +frame-system-rpc-runtime-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +frame-try-runtime = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-authorship = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-babe = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-balances = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-grandpa = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-im-online = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-multisig = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-offences = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-session = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-sudo = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-timestamp = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-transaction-payment = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-transaction-payment-rpc = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-utility = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-basic-authorship = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-chain-spec = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-chain-spec-derive = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-cli = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-client-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-consensus = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-consensus-babe = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-consensus-babe-rpc = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-consensus-epochs = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-executor = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-finality-grandpa = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-finality-grandpa-rpc = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-network = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-rpc = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-rpc-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-rpc-spec-v2 = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-service = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-telemetry = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-tracing = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-transaction-pool = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-transaction-pool-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-utils = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-application-crypto = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-block-builder = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-blockchain = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-consensus = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-consensus-babe = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-core = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-core-hashing-proc-macro = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-finality-grandpa = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-inherents = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-io = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-keyring = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-keystore = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-offchain = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-panic-handler = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-runtime = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-session = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-staking = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-std = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-timestamp = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-tracing = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-transaction-pool = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-version = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +substrate-frame-rpc-system = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +substrate-wasm-builder = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +try-runtime-cli = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } + +# Frontier fork. +fc-cli = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +fc-consensus = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +fc-db = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +fc-mapping-sync = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +fc-rpc = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +fc-rpc-core = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +fc-storage = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +fp-evm = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +fp-rpc = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +fp-self-contained = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +fp-storage = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +pallet-base-fee = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +pallet-dynamic-fee = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +pallet-ethereum = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +pallet-evm = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +pallet-evm-precompile-modexp = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +pallet-evm-precompile-sha3fips = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } +pallet-evm-precompile-simple = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } + [profile.release-lto] inherits = "release" lto = "thin" diff --git a/crates/author-ext-api/Cargo.toml b/crates/author-ext-api/Cargo.toml index 64e8930a1..8be0d51ea 100644 --- a/crates/author-ext-api/Cargo.toml +++ b/crates/author-ext-api/Cargo.toml @@ -5,10 +5,10 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -sp-api = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +codec = { workspace = true, package = "parity-scale-codec", default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +sp-api = { workspace = true, default-features = false } +sp-std = { workspace = true, default-features = false } [features] default = ["std"] diff --git a/crates/author-ext-rpc/Cargo.toml b/crates/author-ext-rpc/Cargo.toml index a7491b2d6..38b06b905 100644 --- a/crates/author-ext-rpc/Cargo.toml +++ b/crates/author-ext-rpc/Cargo.toml @@ -5,20 +5,20 @@ edition = "2021" publish = false [dependencies] -author-ext-api = { version = "0.1", path = "../author-ext-api" } -bioauth-keys = { version = "0.1", path = "../bioauth-keys" } +author-ext-api = { path = "../author-ext-api" } +bioauth-keys = { path = "../bioauth-keys" } rpc-deny-unsafe = { path = "../rpc-deny-unsafe" } rpc-error-response = { path = "../rpc-error-response" } -rpc-validator-key-logic = { version = "0.1", path = "../rpc-validator-key-logic" } +rpc-validator-key-logic = { path = "../rpc-validator-key-logic" } -jsonrpsee = { version = "0.16.2", features = ["server", "macros"] } -sc-transaction-pool-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -serde = "1" -sp-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-blockchain = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-core = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -tracing = "0.1" +jsonrpsee = { workspace = true, features = ["server", "macros"] } +sc-transaction-pool-api = { workspace = true } +serde = { workspace = true } +sp-api = { workspace = true } +sp-blockchain = { workspace = true } +sp-core = { workspace = true } +sp-runtime = { workspace = true } +tracing = { workspace = true } [dev-dependencies] -serde_json = "1" +serde_json = { workspace = true } diff --git a/crates/bioauth-flow-api/Cargo.toml b/crates/bioauth-flow-api/Cargo.toml index 9ab3aa75a..9d9a2c486 100644 --- a/crates/bioauth-flow-api/Cargo.toml +++ b/crates/bioauth-flow-api/Cargo.toml @@ -5,10 +5,10 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -sp-api = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +codec = { workspace = true, package = "parity-scale-codec", default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +sp-api = { workspace = true, default-features = false } +sp-std = { workspace = true, default-features = false } [features] default = ["std"] diff --git a/crates/bioauth-flow-rpc/Cargo.toml b/crates/bioauth-flow-rpc/Cargo.toml index 9b80665ac..d175da652 100644 --- a/crates/bioauth-flow-rpc/Cargo.toml +++ b/crates/bioauth-flow-rpc/Cargo.toml @@ -5,24 +5,24 @@ edition = "2021" publish = false [dependencies] -bioauth-flow-api = { version = "0.1", path = "../bioauth-flow-api" } -bioauth-keys = { version = "0.1", path = "../bioauth-keys" } -pallet-bioauth = { version = "0.1", path = "../pallet-bioauth" } -primitives-liveness-data = { version = "0.1", path = "../primitives-liveness-data" } -robonode-client = { version = "0.1", path = "../robonode-client" } +bioauth-flow-api = { path = "../bioauth-flow-api" } +bioauth-keys = { path = "../bioauth-keys" } +pallet-bioauth = { path = "../pallet-bioauth" } +primitives-liveness-data = { path = "../primitives-liveness-data" } +robonode-client = { path = "../robonode-client" } rpc-deny-unsafe = { path = "../rpc-deny-unsafe" } rpc-error-response = { path = "../rpc-error-response" } -rpc-validator-key-logic = { version = "0.1", path = "../rpc-validator-key-logic" } +rpc-validator-key-logic = { path = "../rpc-validator-key-logic" } -anyhow = "1" -async-trait = "0.1" -jsonrpsee = { version = "0.16.2", features = ["server", "macros"] } -sc-transaction-pool-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -serde = "1" -serde_json = "1" -sp-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-blockchain = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -thiserror = "1" -tokio = "1" -tracing = "0.1" +anyhow = { workspace = true } +async-trait = { workspace = true } +jsonrpsee = { workspace = true, features = ["server", "macros"] } +sc-transaction-pool-api = { workspace = true } +serde = { workspace = true } +serde_json = { workspace = true } +sp-api = { workspace = true } +sp-blockchain = { workspace = true } +sp-runtime = { workspace = true } +thiserror = { workspace = true } +tokio = { workspace = true } +tracing = { workspace = true } diff --git a/crates/bioauth-keys/Cargo.toml b/crates/bioauth-keys/Cargo.toml index fe76f6891..5913889b3 100644 --- a/crates/bioauth-keys/Cargo.toml +++ b/crates/bioauth-keys/Cargo.toml @@ -5,9 +5,9 @@ edition = "2021" publish = false [dependencies] -sp-application-crypto = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-keystore = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -thiserror = "1" +sp-application-crypto = { workspace = true } +sp-keystore = { workspace = true } +thiserror = { workspace = true } [features] default = [] diff --git a/crates/crypto-utils/Cargo.toml b/crates/crypto-utils/Cargo.toml index 810ff4d46..d29c98799 100644 --- a/crates/crypto-utils/Cargo.toml +++ b/crates/crypto-utils/Cargo.toml @@ -5,8 +5,8 @@ edition = "2021" publish = false [dependencies] -frame-support = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-im-online = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-consensus-babe = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-finality-grandpa = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +frame-support = { workspace = true } +pallet-im-online = { workspace = true } +sp-consensus-babe = { workspace = true } +sp-finality-grandpa = { workspace = true } +sp-runtime = { workspace = true } diff --git a/crates/devutil-auth-ticket/Cargo.toml b/crates/devutil-auth-ticket/Cargo.toml index ec4b4dc17..610a01b81 100644 --- a/crates/devutil-auth-ticket/Cargo.toml +++ b/crates/devutil-auth-ticket/Cargo.toml @@ -5,8 +5,8 @@ edition = "2021" publish = false [dependencies] -primitives-auth-ticket = { version = "0.1", path = "../primitives-auth-ticket" } -robonode-crypto = { version = "0.1", path = "../robonode-crypto" } +primitives-auth-ticket = { path = "../primitives-auth-ticket" } +robonode-crypto = { path = "../robonode-crypto" } -anyhow = "1" -hex = "0.4" +anyhow = { workspace = true } +hex = { workspace = true } diff --git a/crates/eip191-crypto/Cargo.toml b/crates/eip191-crypto/Cargo.toml index 42c1b608a..6a4b96a52 100644 --- a/crates/eip191-crypto/Cargo.toml +++ b/crates/eip191-crypto/Cargo.toml @@ -5,15 +5,15 @@ edition = "2021" publish = false [dependencies] -primitives-ethereum = { version = "0.1", path = "../primitives-ethereum", default-features = false } +primitives-ethereum = { path = "../primitives-ethereum", default-features = false } -numtoa = { version = "0.2", default-features = false } -sp-core-hashing-proc-macro = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-io = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +numtoa = { workspace = true, default-features = false } +sp-core-hashing-proc-macro = { workspace = true, default-features = false } +sp-io = { workspace = true, default-features = false } +sp-std = { workspace = true, default-features = false } [dev-dependencies] -hex = "0.4" +hex = { workspace = true } [features] default = ["std"] diff --git a/crates/eip191-token-claim/Cargo.toml b/crates/eip191-token-claim/Cargo.toml index c5f4cd116..cf94bfa2b 100644 --- a/crates/eip191-token-claim/Cargo.toml +++ b/crates/eip191-token-claim/Cargo.toml @@ -5,14 +5,14 @@ edition = "2021" publish = false [dependencies] -hex = { version = "0.4", default-features = false } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +hex = { workspace = true, default-features = false } +sp-std = { workspace = true, default-features = false } [dev-dependencies] -eip191-crypto = { version = "0.1", path = "../eip191-crypto" } -primitives-ethereum = { version = "0.1", path = "../primitives-ethereum" } +eip191-crypto = { path = "../eip191-crypto" } +primitives-ethereum = { path = "../primitives-ethereum" } -hex-literal = "0.4" +hex-literal = { workspace = true } [features] default = ["std"] diff --git a/crates/eip712-account-claim/Cargo.toml b/crates/eip712-account-claim/Cargo.toml index ead5340e4..cf71f80fd 100644 --- a/crates/eip712-account-claim/Cargo.toml +++ b/crates/eip712-account-claim/Cargo.toml @@ -5,12 +5,12 @@ edition = "2021" publish = false [dependencies] -eip712-common = { version = "0.1", path = "../eip712-common", default-features = false } +eip712-common = { path = "../eip712-common", default-features = false } [dev-dependencies] -eip712-common-test-utils = { version = "0.1", path = "../eip712-common-test-utils" } +eip712-common-test-utils = { path = "../eip712-common-test-utils" } -hex-literal = "0.4" +hex-literal = { workspace = true } [features] default = ["std"] diff --git a/crates/eip712-common-test-utils/Cargo.toml b/crates/eip712-common-test-utils/Cargo.toml index 172d83a44..bbccb3152 100644 --- a/crates/eip712-common-test-utils/Cargo.toml +++ b/crates/eip712-common-test-utils/Cargo.toml @@ -5,11 +5,11 @@ edition = "2021" publish = false [dependencies] -eip712-common = { version = "0.1", path = "../eip712-common" } -primitives-ethereum = { version = "0.1", path = "../primitives-ethereum" } +eip712-common = { path = "../eip712-common" } +primitives-ethereum = { path = "../primitives-ethereum" } -ethers-core = { version = "2.0", default-features = false, features = ["eip712"] } -hex-literal = "0.4" -secp256k1 = { version = "0.27" } -serde_json = { version = "1" } -sp-core = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +ethers-core = { workspace = true, default-features = false, features = ["eip712"] } +hex-literal = { workspace = true } +secp256k1 = { workspace = true } +serde_json = { workspace = true } +sp-core = { workspace = true } diff --git a/crates/eip712-common/Cargo.toml b/crates/eip712-common/Cargo.toml index c5b2743da..4be021384 100644 --- a/crates/eip712-common/Cargo.toml +++ b/crates/eip712-common/Cargo.toml @@ -5,15 +5,15 @@ edition = "2021" publish = false [dependencies] -primitives-ethereum = { version = "0.1", path = "../primitives-ethereum", default-features = false } +primitives-ethereum = { path = "../primitives-ethereum", default-features = false } -sp-core-hashing-proc-macro = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-io = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-core-hashing-proc-macro = { workspace = true, default-features = false } +sp-io = { workspace = true, default-features = false } +sp-std = { workspace = true, default-features = false } [dev-dependencies] -hex-literal = "0.4" -sp-core = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +hex-literal = { workspace = true } +sp-core = { workspace = true } [features] default = ["std"] diff --git a/crates/eip712-token-claim/Cargo.toml b/crates/eip712-token-claim/Cargo.toml index 3b09435a0..a5ee25c12 100644 --- a/crates/eip712-token-claim/Cargo.toml +++ b/crates/eip712-token-claim/Cargo.toml @@ -5,12 +5,12 @@ edition = "2021" publish = false [dependencies] -eip712-common = { version = "0.1", path = "../eip712-common", default-features = false } +eip712-common = { path = "../eip712-common", default-features = false } [dev-dependencies] -eip712-common-test-utils = { version = "0.1", path = "../eip712-common-test-utils" } +eip712-common-test-utils = { path = "../eip712-common-test-utils" } -hex-literal = "0.4" +hex-literal = { workspace = true } [features] default = ["std"] diff --git a/crates/facetec-api-client/Cargo.toml b/crates/facetec-api-client/Cargo.toml index 9062b159f..37408e758 100644 --- a/crates/facetec-api-client/Cargo.toml +++ b/crates/facetec-api-client/Cargo.toml @@ -5,14 +5,14 @@ edition = "2021" publish = false [dependencies] -async-trait = "0.1" -bytes = "1" -reqwest = { version = "0.11", features = ["json"] } -serde = { version = "1", features = ["derive"] } -serde_json = "1" -thiserror = "1" +async-trait = { workspace = true } +bytes = { workspace = true } +reqwest = { workspace = true, features = ["json"] } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true } +thiserror = { workspace = true } [dev-dependencies] -assert_matches = "1.5" -tokio = { version = "1", features = ["full"] } -wiremock = "0.5" +assert_matches = { workspace = true } +tokio = { workspace = true, features = ["full"] } +wiremock = { workspace = true } diff --git a/crates/humanode-peer/Cargo.toml b/crates/humanode-peer/Cargo.toml index 58e2491a9..6e1efde31 100644 --- a/crates/humanode-peer/Cargo.toml +++ b/crates/humanode-peer/Cargo.toml @@ -9,91 +9,91 @@ authors = ["Humanode Core"] default-run = "humanode-peer" [dependencies] -bioauth-flow-rpc = { version = "0.1", path = "../bioauth-flow-rpc" } -bioauth-keys = { version = "0.1", path = "../bioauth-keys" } -crypto-utils = { version = "0.1", path = "../crypto-utils" } -humanode-rpc = { version = "0.1", path = "../humanode-rpc" } -humanode-runtime = { version = "0.1", path = "../humanode-runtime" } -keystore-bioauth-account-id = { version = "0.1", path = "../keystore-bioauth-account-id" } -ngrok-api = { version = "0.1", path = "../ngrok-api" } -pallet-bioauth = { version = "0.1", path = "../pallet-bioauth" } -pallet-token-claims = { version = "0.1", path = "../pallet-token-claims" } -robonode-client = { version = "0.1", path = "../robonode-client" } +bioauth-flow-rpc = { path = "../bioauth-flow-rpc" } +bioauth-keys = { path = "../bioauth-keys" } +crypto-utils = { path = "../crypto-utils" } +humanode-rpc = { path = "../humanode-rpc" } +humanode-runtime = { path = "../humanode-runtime" } +keystore-bioauth-account-id = { path = "../keystore-bioauth-account-id" } +ngrok-api = { path = "../ngrok-api" } +pallet-bioauth = { path = "../pallet-bioauth" } +pallet-token-claims = { path = "../pallet-token-claims" } +robonode-client = { path = "../robonode-client" } -anyhow = "1" -async-trait = "0.1" -bip32 = "0.5.0" -clap = { version = "4.1", features = ["derive"] } -codec = { package = "parity-scale-codec", version = "3.2.2" } -fc-cli = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -fc-consensus = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -fc-db = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -fc-mapping-sync = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -fc-rpc = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -fc-rpc-core = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -fc-storage = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -fdlimit = "0.2" -fp-evm = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -frame-benchmarking = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38", optional = true } -frame-benchmarking-cli = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-support = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system-rpc-runtime-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -futures = "0.3" -hex = "0.4.3" -hex-literal = "0.4" -libsecp256k1 = "0.7" -pallet-balances = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-dynamic-fee = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -pallet-im-online = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-transaction-payment = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -qr2term = "0.3" -reqwest = "0.11" -sc-basic-authorship = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-chain-spec = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-chain-spec-derive = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-cli = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-client-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-consensus = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-consensus-babe = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-executor = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-finality-grandpa = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-network = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-rpc = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-service = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-telemetry = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-tracing = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-transaction-pool = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-utils = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -serde = { version = "1", features = ["derive"] } -serde_json = "1" -sha3 = "0.10" -sp-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-application-crypto = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-consensus = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-consensus-babe = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-core = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-finality-grandpa = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-inherents = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-io = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-keyring = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-keystore = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-panic-handler = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-timestamp = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -thiserror = "1" -tiny-bip39 = "1.0" -tokio = { version = "1", features = ["full"] } -tracing = "0.1" -try-runtime-cli = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38", optional = true } -url = "2" +anyhow = { workspace = true } +async-trait = { workspace = true } +bip32 = { workspace = true } +clap = { workspace = true, features = ["derive"] } +codec = { workspace = true, package = "parity-scale-codec" } +fc-cli = { workspace = true } +fc-consensus = { workspace = true } +fc-db = { workspace = true } +fc-mapping-sync = { workspace = true } +fc-rpc = { workspace = true } +fc-rpc-core = { workspace = true } +fc-storage = { workspace = true } +fdlimit = { workspace = true } +fp-evm = { workspace = true } +frame-benchmarking = { workspace = true, optional = true } +frame-benchmarking-cli = { workspace = true } +frame-support = { workspace = true } +frame-system = { workspace = true } +frame-system-rpc-runtime-api = { workspace = true } +futures = { workspace = true } +hex = { workspace = true } +hex-literal = { workspace = true } +libsecp256k1 = { workspace = true } +pallet-balances = { workspace = true, default-features = false } +pallet-dynamic-fee = { workspace = true, default-features = false } +pallet-im-online = { workspace = true, default-features = false } +pallet-transaction-payment = { workspace = true, default-features = false } +qr2term = { workspace = true } +reqwest = { workspace = true } +sc-basic-authorship = { workspace = true } +sc-chain-spec = { workspace = true } +sc-chain-spec-derive = { workspace = true } +sc-cli = { workspace = true } +sc-client-api = { workspace = true } +sc-consensus = { workspace = true } +sc-consensus-babe = { workspace = true } +sc-executor = { workspace = true } +sc-finality-grandpa = { workspace = true } +sc-network = { workspace = true } +sc-rpc = { workspace = true } +sc-service = { workspace = true } +sc-telemetry = { workspace = true } +sc-tracing = { workspace = true } +sc-transaction-pool = { workspace = true } +sc-utils = { workspace = true } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true } +sha3 = { workspace = true } +sp-api = { workspace = true } +sp-application-crypto = { workspace = true } +sp-consensus = { workspace = true } +sp-consensus-babe = { workspace = true } +sp-core = { workspace = true } +sp-finality-grandpa = { workspace = true } +sp-inherents = { workspace = true } +sp-io = { workspace = true } +sp-keyring = { workspace = true } +sp-keystore = { workspace = true } +sp-panic-handler = { workspace = true } +sp-runtime = { workspace = true } +sp-timestamp = { workspace = true } +thiserror = { workspace = true } +tiny-bip39 = { workspace = true } +tokio = { workspace = true, features = ["full"] } +tracing = { workspace = true } +try-runtime-cli = { workspace = true, optional = true } +url = { workspace = true } [dev-dependencies] -indoc = "2.0" -sp-io = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +indoc = { workspace = true } +sp-io = { workspace = true } [build-dependencies] -vergen = { version = "8", default-features = false, features = ["cargo", "git", "gitcl"] } +vergen = { workspace = true, default-features = false, features = ["cargo", "git", "gitcl"] } [features] default = [] diff --git a/crates/humanode-rpc/Cargo.toml b/crates/humanode-rpc/Cargo.toml index d2d13aafa..76be8b68a 100644 --- a/crates/humanode-rpc/Cargo.toml +++ b/crates/humanode-rpc/Cargo.toml @@ -5,40 +5,40 @@ edition = "2021" publish = false [dependencies] -author-ext-api = { version = "0.1", path = "../author-ext-api" } -author-ext-rpc = { version = "0.1", path = "../author-ext-rpc" } -bioauth-flow-api = { version = "0.1", path = "../bioauth-flow-api" } -bioauth-flow-rpc = { version = "0.1", path = "../bioauth-flow-rpc" } -bioauth-keys = { version = "0.1", path = "../bioauth-keys" } -humanode-runtime = { version = "0.1", path = "../humanode-runtime" } -robonode-client = { version = "0.1", path = "../robonode-client" } +author-ext-api = { path = "../author-ext-api" } +author-ext-rpc = { path = "../author-ext-rpc" } +bioauth-flow-api = { path = "../bioauth-flow-api" } +bioauth-flow-rpc = { path = "../bioauth-flow-rpc" } +bioauth-keys = { path = "../bioauth-keys" } +humanode-runtime = { path = "../humanode-runtime" } +robonode-client = { path = "../robonode-client" } -fc-db = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -fc-rpc = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -fc-rpc-core = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -fc-storage = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -fp-rpc = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -fp-storage = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -jsonrpsee = { version = "0.16.2", features = ["server", "macros"] } -pallet-transaction-payment-rpc = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-chain-spec = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-client-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-consensus-babe = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-consensus-babe-rpc = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-consensus-epochs = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-finality-grandpa = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-finality-grandpa-rpc = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-network = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-rpc = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-rpc-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-rpc-spec-v2 = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-transaction-pool = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sc-transaction-pool-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-block-builder = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-blockchain = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-consensus = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-consensus-babe = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-keystore = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -substrate-frame-rpc-system = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +fc-db = { workspace = true } +fc-rpc = { workspace = true } +fc-rpc-core = { workspace = true } +fc-storage = { workspace = true } +fp-rpc = { workspace = true } +fp-storage = { workspace = true } +jsonrpsee = { workspace = true, features = ["server", "macros"] } +pallet-transaction-payment-rpc = { workspace = true } +sc-chain-spec = { workspace = true } +sc-client-api = { workspace = true } +sc-consensus-babe = { workspace = true } +sc-consensus-babe-rpc = { workspace = true } +sc-consensus-epochs = { workspace = true } +sc-finality-grandpa = { workspace = true } +sc-finality-grandpa-rpc = { workspace = true } +sc-network = { workspace = true } +sc-rpc = { workspace = true } +sc-rpc-api = { workspace = true } +sc-rpc-spec-v2 = { workspace = true } +sc-transaction-pool = { workspace = true } +sc-transaction-pool-api = { workspace = true } +sp-api = { workspace = true } +sp-block-builder = { workspace = true } +sp-blockchain = { workspace = true } +sp-consensus = { workspace = true } +sp-consensus-babe = { workspace = true } +sp-keystore = { workspace = true } +sp-runtime = { workspace = true } +substrate-frame-rpc-system = { workspace = true } diff --git a/crates/humanode-runtime/Cargo.toml b/crates/humanode-runtime/Cargo.toml index 5b8b2a5ce..cbe8e2696 100644 --- a/crates/humanode-runtime/Cargo.toml +++ b/crates/humanode-runtime/Cargo.toml @@ -5,96 +5,94 @@ edition = "2021" publish = false [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38", optional = true } +substrate-wasm-builder = { workspace = true, optional = true } [dependencies] -author-ext-api = { version = "0.1", path = "../author-ext-api", default-features = false } -bioauth-flow-api = { version = "0.1", path = "../bioauth-flow-api", default-features = false } -eip191-crypto = { version = "0.1", path = "../eip191-crypto", default-features = false } -eip191-token-claim = { version = "0.1", path = "../eip191-token-claim", default-features = false } -eip712-account-claim = { version = "0.1", path = "../eip712-account-claim", default-features = false } -eip712-common = { version = "0.1", path = "../eip712-common", default-features = false } -eip712-token-claim = { version = "0.1", path = "../eip712-token-claim", default-features = false } -keystore-bioauth-account-id = { version = "0.1", path = "../keystore-bioauth-account-id", default-features = false } -pallet-bioauth = { version = "0.1", path = "../pallet-bioauth", default-features = false } -pallet-bootnodes = { version = "0.1", path = "../pallet-bootnodes", default-features = false } -pallet-chain-properties = { version = "0.1", path = "../pallet-chain-properties", default-features = false } -pallet-chain-start-moment = { version = "0.1", path = "../pallet-chain-start-moment", default-features = false } -pallet-ethereum-chain-id = { version = "0.1", path = "../pallet-ethereum-chain-id", default-features = false } -pallet-evm-accounts-mapping = { version = "0.1", path = "../pallet-evm-accounts-mapping", default-features = false } -pallet-humanode-session = { version = "0.1", path = "../pallet-humanode-session", default-features = false } -pallet-pot = { version = "0.1", path = "../pallet-pot", default-features = false } -pallet-token-claims = { version = "0.1", path = "../pallet-token-claims", default-features = false } -pallet-vesting = { version = "0.1", path = "../pallet-vesting", default-features = false } -precompile-bioauth = { version = "0.1", path = "../precompile-bioauth", default-features = false } -precompile-evm-accounts-mapping = { version = "0.1", path = "../precompile-evm-accounts-mapping", default-features = false } -primitives-auth-ticket = { version = "0.1", path = "../primitives-auth-ticket", default-features = false } -primitives-ethereum = { version = "0.1", path = "../primitives-ethereum", default-features = false } -robonode-crypto = { version = "0.1", path = "../robonode-crypto", default-features = false } -vesting-schedule-linear = { version = "0.1", path = "../vesting-schedule-linear", default-features = false } -vesting-scheduling-timestamp = { version = "0.1", path = "../vesting-scheduling-timestamp", default-features = false } +author-ext-api = { path = "../author-ext-api", default-features = false } +bioauth-flow-api = { path = "../bioauth-flow-api", default-features = false } +eip191-crypto = { path = "../eip191-crypto", default-features = false } +eip191-token-claim = { path = "../eip191-token-claim", default-features = false } +eip712-account-claim = { path = "../eip712-account-claim", default-features = false } +eip712-common = { path = "../eip712-common", default-features = false } +eip712-token-claim = { path = "../eip712-token-claim", default-features = false } +keystore-bioauth-account-id = { path = "../keystore-bioauth-account-id", default-features = false } +pallet-bioauth = { path = "../pallet-bioauth", default-features = false } +pallet-bootnodes = { path = "../pallet-bootnodes", default-features = false } +pallet-chain-properties = { path = "../pallet-chain-properties", default-features = false } +pallet-chain-start-moment = { path = "../pallet-chain-start-moment", default-features = false } +pallet-ethereum-chain-id = { path = "../pallet-ethereum-chain-id", default-features = false } +pallet-evm-accounts-mapping = { path = "../pallet-evm-accounts-mapping", default-features = false } +pallet-humanode-session = { path = "../pallet-humanode-session", default-features = false } +pallet-pot = { path = "../pallet-pot", default-features = false } +pallet-token-claims = { path = "../pallet-token-claims", default-features = false } +pallet-vesting = { path = "../pallet-vesting", default-features = false } +precompile-bioauth = { path = "../precompile-bioauth", default-features = false } +precompile-evm-accounts-mapping = { path = "../precompile-evm-accounts-mapping", default-features = false } +primitives-auth-ticket = { path = "../primitives-auth-ticket", default-features = false } +primitives-ethereum = { path = "../primitives-ethereum", default-features = false } +robonode-crypto = { path = "../robonode-crypto", default-features = false } +vesting-schedule-linear = { path = "../vesting-schedule-linear", default-features = false } +vesting-scheduling-timestamp = { path = "../vesting-scheduling-timestamp", default-features = false } -chrono = { version = "0.4.24", default-features = false } -codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } -fp-rpc = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -fp-self-contained = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-executive = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system-benchmarking = { default-features = false, optional = true, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-try-runtime = { default-features = false, optional = true, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -hex-literal = { version = "0.4", optional = true } -libsecp256k1 = { version = "0.7", default-features = false } -pallet-authorship = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-babe = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-balances = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-base-fee = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -pallet-dynamic-fee = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -pallet-ethereum = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -pallet-evm = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -pallet-evm-precompile-modexp = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -pallet-evm-precompile-sha3fips = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38" } -pallet-grandpa = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-im-online = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-multisig = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-offences = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-session = { default-features = false, features = [ - "historical", -], git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-sudo = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-timestamp = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-transaction-payment = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-utility = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -serde = { version = "1", features = ["derive"], optional = true } -sp-api = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-application-crypto = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-block-builder = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-consensus-babe = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-core = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-inherents = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-offchain = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-session = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-staking = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-tracing = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-transaction-pool = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-version = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -static_assertions = { version = "1.1.0", default-features = false } +chrono = { workspace = true, default-features = false } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +fp-rpc = { workspace = true, default-features = false } +fp-self-contained = { workspace = true, default-features = false } +frame-benchmarking = { workspace = true, default-features = false, optional = true } +frame-executive = { workspace = true, default-features = false } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +frame-system-benchmarking = { workspace = true, default-features = false, optional = true } +frame-system-rpc-runtime-api = { workspace = true, default-features = false } +frame-try-runtime = { workspace = true, default-features = false, optional = true } +hex-literal = { workspace = true, optional = true } +libsecp256k1 = { workspace = true, default-features = false } +pallet-authorship = { workspace = true, default-features = false } +pallet-babe = { workspace = true, default-features = false } +pallet-balances = { workspace = true, default-features = false } +pallet-base-fee = { workspace = true, default-features = false } +pallet-dynamic-fee = { workspace = true, default-features = false } +pallet-ethereum = { workspace = true, default-features = false } +pallet-evm = { workspace = true, default-features = false } +pallet-evm-precompile-modexp = { workspace = true, default-features = false } +pallet-evm-precompile-sha3fips = { workspace = true, default-features = false } +pallet-evm-precompile-simple = { workspace = true, default-features = false } +pallet-grandpa = { workspace = true, default-features = false } +pallet-im-online = { workspace = true, default-features = false } +pallet-multisig = { workspace = true, default-features = false } +pallet-offences = { workspace = true, default-features = false } +pallet-session = { workspace = true, default-features = false, features = ["historical"] } +pallet-sudo = { workspace = true, default-features = false } +pallet-timestamp = { workspace = true, default-features = false } +pallet-transaction-payment = { workspace = true, default-features = false } +pallet-transaction-payment-rpc-runtime-api = { workspace = true, default-features = false } +pallet-utility = { workspace = true, default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +serde = { workspace = true, features = ["derive"], optional = true } +sp-api = { workspace = true, default-features = false } +sp-application-crypto = { workspace = true, default-features = false } +sp-block-builder = { workspace = true, default-features = false } +sp-consensus-babe = { workspace = true, default-features = false } +sp-core = { workspace = true, default-features = false } +sp-inherents = { workspace = true, default-features = false } +sp-offchain = { workspace = true, default-features = false } +sp-runtime = { workspace = true, default-features = false } +sp-session = { workspace = true, default-features = false } +sp-staking = { workspace = true, default-features = false } +sp-std = { workspace = true, default-features = false } +sp-tracing = { workspace = true, default-features = false } +sp-transaction-pool = { workspace = true, default-features = false } +sp-version = { workspace = true, default-features = false } +static_assertions = { workspace = true, default-features = false } [dev-dependencies] -crypto-utils = { version = "0.1", path = "../crypto-utils" } -eip712-common-test-utils = { version = "0.1", path = "../eip712-common-test-utils" } +crypto-utils = { path = "../crypto-utils" } +eip712-common-test-utils = { path = "../eip712-common-test-utils" } -hex = "0.4" -serde_json = "1" -sp-io = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-keystore = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +hex = { workspace = true } +serde_json = { workspace = true } +sp-io = { workspace = true } +sp-keystore = { workspace = true } [features] default = ["std"] diff --git a/crates/keystore-bioauth-account-id/Cargo.toml b/crates/keystore-bioauth-account-id/Cargo.toml index 98810a29e..8f11a5e33 100644 --- a/crates/keystore-bioauth-account-id/Cargo.toml +++ b/crates/keystore-bioauth-account-id/Cargo.toml @@ -5,12 +5,12 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -sp-application-crypto = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-core = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +frame-system = { workspace = true, default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +sp-application-crypto = { workspace = true, default-features = false } +sp-core = { workspace = true, default-features = false } +sp-runtime = { workspace = true, default-features = false } [features] default = ["std"] diff --git a/crates/ngrok-api/Cargo.toml b/crates/ngrok-api/Cargo.toml index 8ab0a39b4..12a5ffbfb 100644 --- a/crates/ngrok-api/Cargo.toml +++ b/crates/ngrok-api/Cargo.toml @@ -6,14 +6,14 @@ authors = ["Humanode Team "] publish = false [dependencies] -async-trait = { version = "0.1", optional = true } -http = { version = "0.2", optional = true } -http-body = { version = "0.4", optional = true } -reqwest = { version = "0.11", optional = true } -serde = "1" -serde_json = "1" -thiserror = { version = "1", optional = true } -url = { version = "2", optional = true } +async-trait = { workspace = true, optional = true } +http = { workspace = true, optional = true } +http-body = { workspace = true, optional = true } +reqwest = { workspace = true, optional = true } +serde = { workspace = true } +serde_json = { workspace = true } +thiserror = { workspace = true, optional = true } +url = { workspace = true, optional = true } [features] client = ["http", "url", "http-body", "thiserror", "async-trait", "reqwest"] diff --git a/crates/pallet-bioauth/Cargo.toml b/crates/pallet-bioauth/Cargo.toml index 366871e94..7c46d34ce 100644 --- a/crates/pallet-bioauth/Cargo.toml +++ b/crates/pallet-bioauth/Cargo.toml @@ -5,21 +5,21 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -frame-benchmarking = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38", optional = true } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -hex-literal = { version = "0.4", optional = true } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -serde = { version = "1", features = ["derive"], optional = true } -sp-api = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +frame-benchmarking = { workspace = true, default-features = false, optional = true } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +hex-literal = { workspace = true, optional = true } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +serde = { workspace = true, features = ["derive"], optional = true } +sp-api = { workspace = true, default-features = false } +sp-runtime = { workspace = true, default-features = false } +sp-std = { workspace = true, default-features = false } [dev-dependencies] -mockall = "0.11" -sp-core = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-io = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +mockall = { workspace = true } +sp-core = { workspace = true, default-features = false } +sp-io = { workspace = true, default-features = false } [features] default = ["std"] diff --git a/crates/pallet-bootnodes/Cargo.toml b/crates/pallet-bootnodes/Cargo.toml index eac248bff..cfebc4e4a 100644 --- a/crates/pallet-bootnodes/Cargo.toml +++ b/crates/pallet-bootnodes/Cargo.toml @@ -5,20 +5,20 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -frame-benchmarking = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38", optional = true } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -serde = { version = "1", features = ["derive"], optional = true } -sp-api = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +frame-benchmarking = { workspace = true, default-features = false, optional = true } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +serde = { workspace = true, features = ["derive"], optional = true } +sp-api = { workspace = true, default-features = false } +sp-runtime = { workspace = true, default-features = false } +sp-std = { workspace = true, default-features = false } [dev-dependencies] -mockall = "0.11" -sp-core = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-io = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +mockall = { workspace = true } +sp-core = { workspace = true, default-features = false } +sp-io = { workspace = true, default-features = false } [features] default = ["std"] diff --git a/crates/pallet-chain-properties/Cargo.toml b/crates/pallet-chain-properties/Cargo.toml index db0069cf4..7ee64af3d 100644 --- a/crates/pallet-chain-properties/Cargo.toml +++ b/crates/pallet-chain-properties/Cargo.toml @@ -5,15 +5,15 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } [dev-dependencies] -sp-core = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-io = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-core = { workspace = true, default-features = false } +sp-io = { workspace = true, default-features = false } +sp-runtime = { workspace = true, default-features = false } [features] default = ["std"] diff --git a/crates/pallet-chain-start-moment/Cargo.toml b/crates/pallet-chain-start-moment/Cargo.toml index f14031f9a..3bf0325e9 100644 --- a/crates/pallet-chain-start-moment/Cargo.toml +++ b/crates/pallet-chain-start-moment/Cargo.toml @@ -5,14 +5,14 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } [dev-dependencies] -pallet-timestamp = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-core = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +pallet-timestamp = { workspace = true } +sp-core = { workspace = true } [features] default = ["std"] diff --git a/crates/pallet-ethereum-chain-id/Cargo.toml b/crates/pallet-ethereum-chain-id/Cargo.toml index 849c08dc2..b3999d3d2 100644 --- a/crates/pallet-ethereum-chain-id/Cargo.toml +++ b/crates/pallet-ethereum-chain-id/Cargo.toml @@ -5,15 +5,15 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } [dev-dependencies] -sp-core = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-io = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sp-core = { workspace = true, default-features = false } +sp-io = { workspace = true, default-features = false } +sp-runtime = { workspace = true, default-features = false } [features] default = ["std"] diff --git a/crates/pallet-evm-accounts-mapping/Cargo.toml b/crates/pallet-evm-accounts-mapping/Cargo.toml index 627187685..62c3f9dea 100644 --- a/crates/pallet-evm-accounts-mapping/Cargo.toml +++ b/crates/pallet-evm-accounts-mapping/Cargo.toml @@ -5,19 +5,19 @@ edition = "2021" publish = false [dependencies] -primitives-ethereum = { version = "0.1", path = "../primitives-ethereum", default-features = false } +primitives-ethereum = { path = "../primitives-ethereum", default-features = false } -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -frame-benchmarking = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38", optional = true } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +frame-benchmarking = { workspace = true, default-features = false, optional = true } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +sp-std = { workspace = true, default-features = false } [dev-dependencies] -mockall = "0.11" -sp-core = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +mockall = { workspace = true } +sp-core = { workspace = true } +sp-runtime = { workspace = true } [features] default = ["std"] diff --git a/crates/pallet-humanode-session/Cargo.toml b/crates/pallet-humanode-session/Cargo.toml index bf987714d..81ac9cbaf 100644 --- a/crates/pallet-humanode-session/Cargo.toml +++ b/crates/pallet-humanode-session/Cargo.toml @@ -5,18 +5,16 @@ edition = "2021" publish = false [dependencies] -pallet-bioauth = { version = "0.1", path = "../pallet-bioauth", default-features = false } -pallet-bootnodes = { version = "0.1", path = "../pallet-bootnodes", default-features = false } +pallet-bioauth = { path = "../pallet-bioauth", default-features = false } +pallet-bootnodes = { path = "../pallet-bootnodes", default-features = false } -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -pallet-session = { default-features = false, features = [ - "historical", -], git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -sp-runtime = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +pallet-session = { workspace = true, default-features = false, features = ["historical"] } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +sp-runtime = { workspace = true, default-features = false } +sp-std = { workspace = true, default-features = false } [features] default = ["std"] diff --git a/crates/pallet-pot/Cargo.toml b/crates/pallet-pot/Cargo.toml index 1dbd676cf..ef73f8452 100644 --- a/crates/pallet-pot/Cargo.toml +++ b/crates/pallet-pot/Cargo.toml @@ -5,13 +5,13 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -serde = { version = "1", features = ["derive"], optional = true } -sp-runtime = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +serde = { workspace = true, features = ["derive"], optional = true } +sp-runtime = { workspace = true, default-features = false } +sp-std = { workspace = true, default-features = false } [features] default = ["std"] diff --git a/crates/pallet-token-claims/Cargo.toml b/crates/pallet-token-claims/Cargo.toml index 6ed04f6d6..512f80e22 100644 --- a/crates/pallet-token-claims/Cargo.toml +++ b/crates/pallet-token-claims/Cargo.toml @@ -5,23 +5,23 @@ edition = "2021" publish = false [dependencies] -primitives-ethereum = { version = "0.1", path = "../primitives-ethereum", default-features = false } +primitives-ethereum = { path = "../primitives-ethereum", default-features = false } -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -frame-benchmarking = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38", optional = true } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -serde = { version = "1", optional = true } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +frame-benchmarking = { workspace = true, default-features = false, optional = true } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +serde = { workspace = true, optional = true } [dev-dependencies] -pallet-pot = { version = "0.1", path = "../pallet-pot" } +pallet-pot = { path = "../pallet-pot" } -mockall = "0.11" -pallet-balances = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -serde_json = "1" -sp-core = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +mockall = { workspace = true } +pallet-balances = { workspace = true } +serde_json = { workspace = true } +sp-core = { workspace = true } +sp-runtime = { workspace = true } [features] default = ["std"] diff --git a/crates/pallet-vesting/Cargo.toml b/crates/pallet-vesting/Cargo.toml index dd18c300e..2961cb6ad 100644 --- a/crates/pallet-vesting/Cargo.toml +++ b/crates/pallet-vesting/Cargo.toml @@ -5,19 +5,19 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -frame-benchmarking = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38", optional = true } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -serde = { version = "1", optional = true } -sp-api = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +frame-benchmarking = { workspace = true, default-features = false, optional = true } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +serde = { workspace = true, optional = true } +sp-api = { workspace = true, default-features = false } [dev-dependencies] -mockall = "0.11" -once_cell = "1" -pallet-balances = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-core = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +mockall = { workspace = true } +once_cell = { workspace = true } +pallet-balances = { workspace = true } +sp-core = { workspace = true } [features] default = ["std"] diff --git a/crates/precompile-bioauth/Cargo.toml b/crates/precompile-bioauth/Cargo.toml index c2bedc995..b671304cf 100644 --- a/crates/precompile-bioauth/Cargo.toml +++ b/crates/precompile-bioauth/Cargo.toml @@ -5,25 +5,25 @@ edition = "2021" publish = false [dependencies] -pallet-bioauth = { version = "0.1", path = "../pallet-bioauth", default-features = false } +pallet-bioauth = { path = "../pallet-bioauth", default-features = false } precompile-utils = { path = "../precompile-utils", default-features = false } -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -fp-evm = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38", default-features = false } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -getrandom = { version = "0.2", features = ["js"] } -num_enum = { version = "0.6.0", default-features = false } -pallet-evm = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38", default-features = false } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -serde = { version = "1", features = ["derive"], optional = true } -sp-runtime = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +fp-evm = { workspace = true, default-features = false } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +getrandom = { workspace = true, features = ["js"] } +num_enum = { workspace = true, default-features = false } +pallet-evm = { workspace = true, default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +serde = { workspace = true, features = ["derive"], optional = true } +sp-runtime = { workspace = true, default-features = false } +sp-std = { workspace = true, default-features = false } [dev-dependencies] -mockall = "0.11" -sp-core = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-io = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +mockall = { workspace = true } +sp-core = { workspace = true, default-features = false } +sp-io = { workspace = true, default-features = false } [features] default = ["std"] diff --git a/crates/precompile-evm-accounts-mapping/Cargo.toml b/crates/precompile-evm-accounts-mapping/Cargo.toml index 200c3e4e2..abc2746f9 100644 --- a/crates/precompile-evm-accounts-mapping/Cargo.toml +++ b/crates/precompile-evm-accounts-mapping/Cargo.toml @@ -5,22 +5,22 @@ edition = "2021" publish = false [dependencies] -pallet-evm-accounts-mapping = { version = "0.1", path = "../pallet-evm-accounts-mapping", default-features = false } -primitives-ethereum = { version = "0.1", path = "../primitives-ethereum", default-features = false } +pallet-evm-accounts-mapping = { path = "../pallet-evm-accounts-mapping", default-features = false } +primitives-ethereum = { path = "../primitives-ethereum", default-features = false } -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -fp-evm = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38", default-features = false } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +fp-evm = { workspace = true, default-features = false } +sp-std = { workspace = true, default-features = false } [dev-dependencies] -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -hex-literal = "0.4" -mockall = "0.11" -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -sp-core = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-io = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -sp-runtime = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +hex-literal = { workspace = true } +mockall = { workspace = true } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +sp-core = { workspace = true, default-features = false } +sp-io = { workspace = true, default-features = false } +sp-runtime = { workspace = true, default-features = false } [features] default = ["std"] diff --git a/crates/precompile-utils/Cargo.toml b/crates/precompile-utils/Cargo.toml index af541b685..8dc736932 100644 --- a/crates/precompile-utils/Cargo.toml +++ b/crates/precompile-utils/Cargo.toml @@ -7,29 +7,29 @@ version = "0.1.0" publish = false [dependencies] -impl-trait-for-tuples = "0.2.2" -log = "0.4" -num_enum = { version = "0.6.0", default-features = false } -sha3 = { version = "0.10", default-features = false } -similar-asserts = { version = "1.1.0", optional = true } +impl-trait-for-tuples = { workspace = true } +log = { workspace = true } +num_enum = { workspace = true, default-features = false } +sha3 = { workspace = true, default-features = false } +similar-asserts = { workspace = true, optional = true } precompile-utils-macro = { path = "macro" } # Substrate -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false } -frame-support = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38", default-features = false } -frame-system = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38", default-features = false } -sp-core = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38", default-features = false } -sp-io = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38", default-features = false } -sp-std = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38", default-features = false } +codec = { workspace = true, package = "parity-scale-codec", default-features = false } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +sp-core = { workspace = true, default-features = false } +sp-io = { workspace = true, default-features = false } +sp-std = { workspace = true, default-features = false } # Frontier -evm = { version = "0.37", default-features = false, features = ["with-codec"] } -fp-evm = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38", default-features = false } -pallet-evm = { git = "https://github.com/humanode-network/frontier", branch = "locked/polkadot-v0.9.38", default-features = false } +evm = { workspace = true, default-features = false, features = ["with-codec"] } +fp-evm = { workspace = true, default-features = false } +pallet-evm = { workspace = true, default-features = false } [dev-dependencies] -hex-literal = "0.4.1" +hex-literal = { workspace = true } [features] default = ["std"] diff --git a/crates/precompile-utils/macro/Cargo.toml b/crates/precompile-utils/macro/Cargo.toml index 8261b284a..85f3e439d 100644 --- a/crates/precompile-utils/macro/Cargo.toml +++ b/crates/precompile-utils/macro/Cargo.toml @@ -14,8 +14,8 @@ name = "tests" path = "tests/tests.rs" [dependencies] -num_enum = { version = "0.5.3", default-features = false } -proc-macro2 = "1.0" -quote = "1.0" -sha3 = "0.9" -syn = { version = "1.0", features = ["extra-traits", "fold", "full", "visit"] } +num_enum = { version = "0.5.3", default-features = false } # special case, exlucded from workspace dependencies +proc-macro2 = { workspace = true } +quote = { workspace = true } +sha3 = "0.9" # special case, exlucded from workspace dependencies +syn = { workspace = true, features = ["extra-traits", "fold", "full", "visit"] } diff --git a/crates/primitives-auth-ticket/Cargo.toml b/crates/primitives-auth-ticket/Cargo.toml index 467b96c4c..aed9fe429 100644 --- a/crates/primitives-auth-ticket/Cargo.toml +++ b/crates/primitives-auth-ticket/Cargo.toml @@ -5,10 +5,10 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -serde = { version = "1", features = ["derive"], optional = true } -sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +serde = { workspace = true, features = ["derive"], optional = true } +sp-std = { workspace = true, default-features = false } [features] default = ["std"] diff --git a/crates/primitives-ethereum/Cargo.toml b/crates/primitives-ethereum/Cargo.toml index 252ac823b..734326e9a 100644 --- a/crates/primitives-ethereum/Cargo.toml +++ b/crates/primitives-ethereum/Cargo.toml @@ -5,15 +5,15 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -rustc-hex = { version = "2.1.0", default-features = false } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -serde = { version = "1", optional = true } +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = ["derive"] } +frame-support = { workspace = true, default-features = false } +frame-system = { workspace = true, default-features = false } +rustc-hex = { workspace = true, default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +serde = { workspace = true, optional = true } [dev-dependencies] -serde_json = "1" +serde_json = { workspace = true } [features] default = ["std"] diff --git a/crates/primitives-liveness-data/Cargo.toml b/crates/primitives-liveness-data/Cargo.toml index 196a83ec0..68e88cc70 100644 --- a/crates/primitives-liveness-data/Cargo.toml +++ b/crates/primitives-liveness-data/Cargo.toml @@ -5,8 +5,8 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", features = ["derive"] } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -serde = { version = "1", features = ["derive"] } +codec = { workspace = true, package = "parity-scale-codec", features = ["derive"] } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +serde = { workspace = true, features = ["derive"] } [features] diff --git a/crates/robonode-client/Cargo.toml b/crates/robonode-client/Cargo.toml index 3ba39ed78..0b5b504a8 100644 --- a/crates/robonode-client/Cargo.toml +++ b/crates/robonode-client/Cargo.toml @@ -5,12 +5,12 @@ edition = "2021" publish = false [dependencies] -reqwest = { version = "0.11", features = ["json"] } -serde = { version = "1", features = ["derive"] } -serde_json = "1" -thiserror = "1" +reqwest = { workspace = true, features = ["json"] } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true } +thiserror = { workspace = true } [dev-dependencies] -assert_matches = "1.5" -tokio = { version = "1", features = ["full"] } -wiremock = "0.5" +assert_matches = { workspace = true } +tokio = { workspace = true, features = ["full"] } +wiremock = { workspace = true } diff --git a/crates/robonode-crypto/Cargo.toml b/crates/robonode-crypto/Cargo.toml index 065e565f6..8a3fd3194 100644 --- a/crates/robonode-crypto/Cargo.toml +++ b/crates/robonode-crypto/Cargo.toml @@ -5,11 +5,11 @@ edition = "2021" publish = false [dependencies] -ed25519-dalek = { version = "1", default-features = false, features = ["rand", "u64_backend"] } +ed25519-dalek = { workspace = true, default-features = false, features = ["rand", "u64_backend"] } [dev-dependencies] -hex-literal = "0.4.1" -rand = "0.7" +hex-literal = { workspace = true } +rand = { workspace = true } [features] default = ["std"] diff --git a/crates/robonode-keygen/Cargo.toml b/crates/robonode-keygen/Cargo.toml index ae5b383b7..06515154d 100644 --- a/crates/robonode-keygen/Cargo.toml +++ b/crates/robonode-keygen/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" publish = false [dependencies] -robonode-crypto = { version = "0.1", path = "../robonode-crypto" } +robonode-crypto = { path = "../robonode-crypto" } -hex = "0.4" -rand = "0.7" +hex = { workspace = true } +rand = { workspace = true } diff --git a/crates/robonode-server/Cargo.toml b/crates/robonode-server/Cargo.toml index 4bb4d5ca4..553007427 100644 --- a/crates/robonode-server/Cargo.toml +++ b/crates/robonode-server/Cargo.toml @@ -5,27 +5,27 @@ edition = "2021" publish = false [dependencies] -facetec-api-client = { version = "0.1", path = "../facetec-api-client" } -primitives-auth-ticket = { version = "0.1", path = "../primitives-auth-ticket" } -primitives-liveness-data = { version = "0.1", path = "../primitives-liveness-data" } -robonode-crypto = { version = "0.1", path = "../robonode-crypto" } +facetec-api-client = { path = "../facetec-api-client" } +primitives-auth-ticket = { path = "../primitives-auth-ticket" } +primitives-liveness-data = { path = "../primitives-liveness-data" } +robonode-crypto = { path = "../robonode-crypto" } -async-trait = "0.1" -hex = "0.4" -reqwest = "0.11" -sc-tracing = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -serde = { version = "1", features = ["derive"] } -sp-core = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -tokio = { version = "1", features = ["full"] } -tracing = "0.1" -uuid = { version = "1.3", features = ["v4"] } -warp = "0.3" +async-trait = { workspace = true } +hex = { workspace = true } +reqwest = { workspace = true } +sc-tracing = { workspace = true } +serde = { workspace = true, features = ["derive"] } +sp-core = { workspace = true } +tokio = { workspace = true, features = ["full"] } +tracing = { workspace = true } +uuid = { workspace = true, features = ["v4"] } +warp = { workspace = true } [dev-dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2" } -mockall = "0.11" -serde_json = "1" -tracing-test = "0.2" +codec = { workspace = true, package = "parity-scale-codec" } +mockall = { workspace = true } +serde_json = { workspace = true } +tracing-test = { workspace = true } [features] logic-integration-tests = [] diff --git a/crates/rpc-deny-unsafe/Cargo.toml b/crates/rpc-deny-unsafe/Cargo.toml index e8f0fe54c..62fea402f 100644 --- a/crates/rpc-deny-unsafe/Cargo.toml +++ b/crates/rpc-deny-unsafe/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" publish = false [dependencies] -sc-rpc-api = { git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } +sc-rpc-api = { workspace = true } diff --git a/crates/rpc-error-response/Cargo.toml b/crates/rpc-error-response/Cargo.toml index 11767d68c..45756d912 100644 --- a/crates/rpc-error-response/Cargo.toml +++ b/crates/rpc-error-response/Cargo.toml @@ -5,5 +5,5 @@ edition = "2021" publish = false [dependencies] -jsonrpsee = { version = "0.16.2", features = ["server", "macros"] } -serde = "1" +jsonrpsee = { workspace = true, features = ["server", "macros"] } +serde = { workspace = true } diff --git a/crates/rpc-validator-key-logic/Cargo.toml b/crates/rpc-validator-key-logic/Cargo.toml index 4c4f32c78..f33ad73d7 100644 --- a/crates/rpc-validator-key-logic/Cargo.toml +++ b/crates/rpc-validator-key-logic/Cargo.toml @@ -5,9 +5,9 @@ edition = "2021" publish = false [dependencies] -bioauth-keys = { version = "0.1", path = "../bioauth-keys" } +bioauth-keys = { path = "../bioauth-keys" } -jsonrpsee = { version = "0.16.2", features = ["server", "macros"] } -serde_json = "1" -thiserror = "1" -tracing = "0.1" +jsonrpsee = { workspace = true, features = ["server", "macros"] } +serde_json = { workspace = true } +thiserror = { workspace = true } +tracing = { workspace = true } diff --git a/crates/vesting-schedule-linear/Cargo.toml b/crates/vesting-schedule-linear/Cargo.toml index ceaefbd89..c76de4f93 100644 --- a/crates/vesting-schedule-linear/Cargo.toml +++ b/crates/vesting-schedule-linear/Cargo.toml @@ -5,17 +5,17 @@ edition = "2021" publish = false [dependencies] -codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = [ +codec = { workspace = true, package = "parity-scale-codec", default-features = false, features = [ "derive", "max-encoded-len", ] } -num-traits = { version = "0.2", default-features = false } -scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } -serde = { version = "1", features = ["derive"], optional = true } +num-traits = { workspace = true, default-features = false } +scale-info = { workspace = true, default-features = false, features = ["derive"] } +serde = { workspace = true, features = ["derive"], optional = true } [dev-dependencies] -num = "0.4" -serde_json = "1" +num = { workspace = true } +serde_json = { workspace = true } [features] default = ["std"] diff --git a/crates/vesting-scheduling-timestamp/Cargo.toml b/crates/vesting-scheduling-timestamp/Cargo.toml index d98e371f4..a39fa8aac 100644 --- a/crates/vesting-scheduling-timestamp/Cargo.toml +++ b/crates/vesting-scheduling-timestamp/Cargo.toml @@ -5,16 +5,16 @@ edition = "2021" publish = false [dependencies] -pallet-vesting = { version = "0.1", path = "../pallet-vesting", default-features = false } -vesting-schedule-linear = { version = "0.1", path = "../vesting-schedule-linear", default-features = false } +pallet-vesting = { path = "../pallet-vesting", default-features = false } +vesting-schedule-linear = { path = "../vesting-schedule-linear", default-features = false } -frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "locked/polkadot-v0.9.38" } -num-traits = { version = "0.2", default-features = false } -serde = { version = "1", optional = true } +frame-support = { workspace = true, default-features = false } +num-traits = { workspace = true, default-features = false } +serde = { workspace = true, optional = true } [dev-dependencies] -mockall = "0.11" -serde_json = "1" +mockall = { workspace = true } +serde_json = { workspace = true } [features] default = ["std"]