From 2a247291615f8fa0dbe769b098e32578160c3f1a Mon Sep 17 00:00:00 2001 From: ZL910627 Date: Sat, 20 Nov 2021 09:15:19 +0800 Subject: [PATCH] Fix compile issue --- README.md | 2 +- contracts/impls/token/erc20/Cargo.toml | 12 ++++---- contracts/impls/zkp/groth16/Cargo.toml | 12 ++++---- contracts/patra-env/Cargo.toml | 2 +- contracts/stubs/token/erc20/Cargo.toml | 12 ++++---- contracts/stubs/token/trait-erc20/Cargo.toml | 12 ++++---- contracts/traits/access/ownership/Cargo.toml | 10 +++---- contracts/traits/token/erc20/Cargo.toml | 12 ++++---- .../access/control-enumerable/Cargo.toml | 22 +++++++-------- crates/components/access/control/Cargo.toml | 22 +++++++-------- crates/components/access/ownable/Cargo.toml | 4 +-- .../governance/timelock-controller/Cargo.toml | 26 ++++++++--------- .../timelock-controller/receiver/Cargo.toml | 12 ++++---- .../components/security/pausable/Cargo.toml | 18 ++++++------ .../security/reentrancy-guard/Cargo.toml | 20 ++++++------- crates/components/token/erc1155/Cargo.toml | 28 +++++++++---------- .../token/erc1155/receiver/Cargo.toml | 12 ++++---- crates/components/token/erc20/Cargo.toml | 24 ++++++++-------- crates/components/token/erc721/Cargo.toml | 28 +++++++++---------- .../token/erc721/receiver/Cargo.toml | 12 ++++---- .../components/token/erc721/types/Cargo.toml | 8 +++--- crates/components/token/erc777/Cargo.toml | 24 ++++++++-------- .../token/receiver/erc1155/Cargo.toml | 28 +++++++++---------- .../token/receiver/erc721/Cargo.toml | 28 +++++++++---------- crates/components/utils/escrow/Cargo.toml | 20 ++++++------- .../components/utils/escrow/stub/Cargo.toml | 10 +++---- crates/lang/codegen/Cargo.toml | 4 +-- crates/lang/contract/Cargo.toml | 10 +++---- crates/lang/macro/Cargo.toml | 20 ++++++------- .../access-control/access-control/Cargo.toml | 10 +++---- .../access-control/ownable/Cargo.toml | 12 ++++---- .../timelock-controller-receiver/Cargo.toml | 12 ++++---- .../governance/timelock-controller/Cargo.toml | 12 ++++---- .../reentrancy-guard/caller/Cargo.toml | 10 +++---- .../reentrancy-guard/flipper/Cargo.toml | 10 +++---- .../reentrancy-guard/traits/Cargo.toml | 10 +++---- .../token/erc1155-burnable/Cargo.toml | 12 ++++---- .../token/erc1155-pausable/Cargo.toml | 12 ++++---- .../token/erc1155-token-receiver/Cargo.toml | 12 ++++---- example/contracts/token/erc1155/Cargo.toml | 12 ++++---- .../contracts/token/erc20-burnable/Cargo.toml | 12 ++++---- .../contracts/token/erc20-capped/Cargo.toml | 12 ++++---- .../contracts/token/erc20-pausable/Cargo.toml | 12 ++++---- example/contracts/token/erc20/Cargo.toml | 12 ++++---- .../token/erc721-burnable/Cargo.toml | 12 ++++---- .../token/erc721-enumerable/Cargo.toml | 12 ++++---- .../token/erc721-pausable/Cargo.toml | 12 ++++---- .../token/erc721-token-receiver/Cargo.toml | 12 ++++---- .../token/erc721-urlstorage/Cargo.toml | 12 ++++---- example/contracts/token/erc721/Cargo.toml | 12 ++++---- example/contracts/token/erc777/Cargo.toml | 12 ++++---- example/contracts/tools/erc165/Cargo.toml | 10 +++---- example/contracts/utils/escrow/Cargo.toml | 10 +++---- 53 files changed, 365 insertions(+), 365 deletions(-) diff --git a/README.md b/README.md index 3815272..70d5518 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Since ink! is under development, developers need to use metis according to their e.g.: ```toml [dependencies] - ink_lang = { version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false } + ink_lang = { version = "3.0.0-rc5", default-features = false } ``` For this situation, developer should use Metis master branch directly. In master, Metis' dependencies for ink! will be github repo as well. diff --git a/contracts/impls/token/erc20/Cargo.toml b/contracts/impls/token/erc20/Cargo.toml index f38c030..adfeb5b 100755 --- a/contracts/impls/token/erc20/Cargo.toml +++ b/contracts/impls/token/erc20/Cargo.toml @@ -5,12 +5,12 @@ name = "erc20" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.0", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"], optional = true} diff --git a/contracts/impls/zkp/groth16/Cargo.toml b/contracts/impls/zkp/groth16/Cargo.toml index e498e48..1313e84 100755 --- a/contracts/impls/zkp/groth16/Cargo.toml +++ b/contracts/impls/zkp/groth16/Cargo.toml @@ -5,12 +5,12 @@ name = "groth16" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.0", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"], optional = true} diff --git a/contracts/patra-env/Cargo.toml b/contracts/patra-env/Cargo.toml index 5f4c39a..b0e962d 100644 --- a/contracts/patra-env/Cargo.toml +++ b/contracts/patra-env/Cargo.toml @@ -5,7 +5,7 @@ name = "patra_env" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} [lib] crate-type = [ diff --git a/contracts/stubs/token/erc20/Cargo.toml b/contracts/stubs/token/erc20/Cargo.toml index 2cf2bb4..92d2818 100755 --- a/contracts/stubs/token/erc20/Cargo.toml +++ b/contracts/stubs/token/erc20/Cargo.toml @@ -5,12 +5,12 @@ name = "erc20-stub" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.0", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"], optional = true} diff --git a/contracts/stubs/token/trait-erc20/Cargo.toml b/contracts/stubs/token/trait-erc20/Cargo.toml index 8b52e1c..0fa8ba6 100755 --- a/contracts/stubs/token/trait-erc20/Cargo.toml +++ b/contracts/stubs/token/trait-erc20/Cargo.toml @@ -5,12 +5,12 @@ name = "trait-erc20-stub" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.0", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"], optional = true} diff --git a/contracts/traits/access/ownership/Cargo.toml b/contracts/traits/access/ownership/Cargo.toml index 6144396..d6c4fed 100755 --- a/contracts/traits/access/ownership/Cargo.toml +++ b/contracts/traits/access/ownership/Cargo.toml @@ -5,11 +5,11 @@ name = "ownership" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.0", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"], optional = true} diff --git a/contracts/traits/token/erc20/Cargo.toml b/contracts/traits/token/erc20/Cargo.toml index 1b0449f..96c4b1c 100755 --- a/contracts/traits/token/erc20/Cargo.toml +++ b/contracts/traits/token/erc20/Cargo.toml @@ -5,12 +5,12 @@ name = "erc20-trait" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.0", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"], optional = true} diff --git a/crates/components/access/control-enumerable/Cargo.toml b/crates/components/access/control-enumerable/Cargo.toml index c343c99..456b34b 100644 --- a/crates/components/access/control-enumerable/Cargo.toml +++ b/crates/components/access/control-enumerable/Cargo.toml @@ -5,10 +5,10 @@ name = "metis_access_control_enumerable" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} @@ -22,13 +22,13 @@ metis_access_control = {path = "../control/"} metis_access_control_enumerable = {path = "."} trybuild = {version = "1.0", features = ["diff"]} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} +ink_env = {version = "3.0.0-rc5"} +ink_lang = {version = "3.0.0-rc5"} +ink_lang_codegen = {version = "3.0.0-rc5"} +ink_lang_ir = {version = "3.0.0-rc5"} +ink_metadata = {version = "3.0.0-rc5"} +ink_primitives = {version = "3.0.0-rc5"} +ink_storage = {version = "3.0.0-rc5"} num-traits = {version = "0.2", features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", features = ["derive"]} diff --git a/crates/components/access/control/Cargo.toml b/crates/components/access/control/Cargo.toml index a37565e..a2f17df 100644 --- a/crates/components/access/control/Cargo.toml +++ b/crates/components/access/control/Cargo.toml @@ -5,10 +5,10 @@ name = "metis_access_control" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} @@ -20,13 +20,13 @@ metis_lang = {path = "../../../lang/", default-features = false} metis_access_control = {path = "."} trybuild = {version = "1.0", features = ["diff"]} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} +ink_env = {version = "3.0.0-rc5"} +ink_lang = {version = "3.0.0-rc5"} +ink_lang_codegen = {version = "3.0.0-rc5"} +ink_lang_ir = {version = "3.0.0-rc5"} +ink_metadata = {version = "3.0.0-rc5"} +ink_primitives = {version = "3.0.0-rc5"} +ink_storage = {version = "3.0.0-rc5"} num-traits = {version = "0.2", features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", features = ["derive"]} diff --git a/crates/components/access/ownable/Cargo.toml b/crates/components/access/ownable/Cargo.toml index 5965e52..e5f61c0 100644 --- a/crates/components/access/ownable/Cargo.toml +++ b/crates/components/access/ownable/Cargo.toml @@ -5,8 +5,8 @@ name = "metis_ownable" version = "0.1.0" [dependencies] -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} diff --git a/crates/components/governance/timelock-controller/Cargo.toml b/crates/components/governance/timelock-controller/Cargo.toml index 825f0a6..6efcd03 100644 --- a/crates/components/governance/timelock-controller/Cargo.toml +++ b/crates/components/governance/timelock-controller/Cargo.toml @@ -5,12 +5,12 @@ name = "metis_timelock_controller" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"]} @@ -24,13 +24,13 @@ metis_ownable = {path = "../../../components/access/ownable"} metis_timelock_controller = {path = "."} trybuild = {version = "1.0", features = ["diff"]} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} +ink_env = {version = "3.0.0-rc5"} +ink_lang = {version = "3.0.0-rc5"} +ink_lang_codegen = {version = "3.0.0-rc5"} +ink_lang_ir = {version = "3.0.0-rc5"} +ink_metadata = {version = "3.0.0-rc5"} +ink_primitives = {version = "3.0.0-rc5"} +ink_storage = {version = "3.0.0-rc5"} num-traits = {version = "0.2", features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", features = ["derive"]} diff --git a/crates/components/governance/timelock-controller/receiver/Cargo.toml b/crates/components/governance/timelock-controller/receiver/Cargo.toml index 9d447c3..8019fed 100644 --- a/crates/components/governance/timelock-controller/receiver/Cargo.toml +++ b/crates/components/governance/timelock-controller/receiver/Cargo.toml @@ -5,12 +5,12 @@ name = "metis_timelock_controller_receiver" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/crates/components/security/pausable/Cargo.toml b/crates/components/security/pausable/Cargo.toml index e3cd651..c3b431e 100644 --- a/crates/components/security/pausable/Cargo.toml +++ b/crates/components/security/pausable/Cargo.toml @@ -5,8 +5,8 @@ name = "metis_pausable" version = "0.1.0" [dependencies] -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} @@ -19,13 +19,13 @@ metis_ownable = {path = "../../../components/access/ownable"} metis_pausable = {path = "../../../components/security/pausable"} trybuild = {version = "1.0", features = ["diff"]} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} +ink_env = {version = "3.0.0-rc5"} +ink_lang = {version = "3.0.0-rc5"} +ink_lang_codegen = {version = "3.0.0-rc5"} +ink_lang_ir = {version = "3.0.0-rc5"} +ink_metadata = {version = "3.0.0-rc5"} +ink_primitives = {version = "3.0.0-rc5"} +ink_storage = {version = "3.0.0-rc5"} num-traits = {version = "0.2", features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", features = ["derive"]} diff --git a/crates/components/security/reentrancy-guard/Cargo.toml b/crates/components/security/reentrancy-guard/Cargo.toml index 27de604..62d2e50 100644 --- a/crates/components/security/reentrancy-guard/Cargo.toml +++ b/crates/components/security/reentrancy-guard/Cargo.toml @@ -5,9 +5,9 @@ name = "metis_reentrancy_guard" version = "0.1.0" [dependencies] -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"]} @@ -19,13 +19,13 @@ metis_ownable = {path = "../../../components/access/ownable"} metis_reentrancy_guard = {path = "."} trybuild = {version = "1.0", features = ["diff"]} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} +ink_env = {version = "3.0.0-rc5"} +ink_lang = {version = "3.0.0-rc5"} +ink_lang_codegen = {version = "3.0.0-rc5"} +ink_lang_ir = {version = "3.0.0-rc5"} +ink_metadata = {version = "3.0.0-rc5"} +ink_primitives = {version = "3.0.0-rc5"} +ink_storage = {version = "3.0.0-rc5"} num-traits = {version = "0.2", features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", features = ["derive"]} diff --git a/crates/components/token/erc1155/Cargo.toml b/crates/components/token/erc1155/Cargo.toml index 55e3870..74d8837 100644 --- a/crates/components/token/erc1155/Cargo.toml +++ b/crates/components/token/erc1155/Cargo.toml @@ -5,13 +5,13 @@ name = "metis_erc1155" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_lang_ir = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} @@ -32,13 +32,13 @@ metis_ownable = {path = "../../access/ownable"} metis_pausable = {path = "../../security/pausable"} trybuild = {version = "1.0", features = ["diff"]} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} +ink_env = {version = "3.0.0-rc5"} +ink_lang = {version = "3.0.0-rc5"} +ink_lang_codegen = {version = "3.0.0-rc5"} +ink_lang_ir = {version = "3.0.0-rc5"} +ink_metadata = {version = "3.0.0-rc5"} +ink_primitives = {version = "3.0.0-rc5"} +ink_storage = {version = "3.0.0-rc5"} hex = {version = "0.4"} num-traits = {version = "0.2", features = ["i128"]} diff --git a/crates/components/token/erc1155/receiver/Cargo.toml b/crates/components/token/erc1155/receiver/Cargo.toml index 5914d9a..7a10be1 100644 --- a/crates/components/token/erc1155/receiver/Cargo.toml +++ b/crates/components/token/erc1155/receiver/Cargo.toml @@ -5,12 +5,12 @@ name = "metis_erc1155_receiver" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/crates/components/token/erc20/Cargo.toml b/crates/components/token/erc20/Cargo.toml index df44244..9e74e5c 100644 --- a/crates/components/token/erc20/Cargo.toml +++ b/crates/components/token/erc20/Cargo.toml @@ -5,11 +5,11 @@ name = "metis_erc20" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} @@ -26,13 +26,13 @@ metis_ownable = {path = "../../access/ownable"} metis_pausable = {path = "../../security/pausable"} trybuild = {version = "1.0", features = ["diff"]} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} +ink_env = {version = "3.0.0-rc5"} +ink_lang = {version = "3.0.0-rc5"} +ink_lang_codegen = {version = "3.0.0-rc5"} +ink_lang_ir = {version = "3.0.0-rc5"} +ink_metadata = {version = "3.0.0-rc5"} +ink_primitives = {version = "3.0.0-rc5"} +ink_storage = {version = "3.0.0-rc5"} num-traits = {version = "0.2", features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", features = ["derive"]} diff --git a/crates/components/token/erc721/Cargo.toml b/crates/components/token/erc721/Cargo.toml index ee54745..a129002 100644 --- a/crates/components/token/erc721/Cargo.toml +++ b/crates/components/token/erc721/Cargo.toml @@ -5,13 +5,13 @@ name = "metis_erc721" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_lang_ir = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} @@ -32,13 +32,13 @@ metis_ownable = {path = "../../access/ownable"} metis_pausable = {path = "../../security/pausable"} trybuild = {version = "1.0", features = ["diff"]} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} +ink_env = {version = "3.0.0-rc5"} +ink_lang = {version = "3.0.0-rc5"} +ink_lang_codegen = {version = "3.0.0-rc5"} +ink_lang_ir = {version = "3.0.0-rc5"} +ink_metadata = {version = "3.0.0-rc5"} +ink_primitives = {version = "3.0.0-rc5"} +ink_storage = {version = "3.0.0-rc5"} hex = {version = "0.4"} num-traits = {version = "0.2", features = ["i128"]} diff --git a/crates/components/token/erc721/receiver/Cargo.toml b/crates/components/token/erc721/receiver/Cargo.toml index 361843d..50ef650 100644 --- a/crates/components/token/erc721/receiver/Cargo.toml +++ b/crates/components/token/erc721/receiver/Cargo.toml @@ -5,12 +5,12 @@ name = "metis_erc721_receiver" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/crates/components/token/erc721/types/Cargo.toml b/crates/components/token/erc721/types/Cargo.toml index 7299870..04cdecf 100644 --- a/crates/components/token/erc721/types/Cargo.toml +++ b/crates/components/token/erc721/types/Cargo.toml @@ -5,10 +5,10 @@ name = "metis_erc721_types" version = "0.1.0" [dependencies] -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} diff --git a/crates/components/token/erc777/Cargo.toml b/crates/components/token/erc777/Cargo.toml index c74542f..8a0b52f 100644 --- a/crates/components/token/erc777/Cargo.toml +++ b/crates/components/token/erc777/Cargo.toml @@ -5,11 +5,11 @@ name = "metis_erc777" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} @@ -26,13 +26,13 @@ metis_ownable = {path = "../../access/ownable"} metis_pausable = {path = "../../security/pausable"} trybuild = {version = "1.0", features = ["diff"]} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} +ink_env = {version = "3.0.0-rc5"} +ink_lang = {version = "3.0.0-rc5"} +ink_lang_codegen = {version = "3.0.0-rc5"} +ink_lang_ir = {version = "3.0.0-rc5"} +ink_metadata = {version = "3.0.0-rc5"} +ink_primitives = {version = "3.0.0-rc5"} +ink_storage = {version = "3.0.0-rc5"} num-traits = {version = "0.2", features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", features = ["derive"]} diff --git a/crates/components/token/receiver/erc1155/Cargo.toml b/crates/components/token/receiver/erc1155/Cargo.toml index cdee3f9..a50585a 100644 --- a/crates/components/token/receiver/erc1155/Cargo.toml +++ b/crates/components/token/receiver/erc1155/Cargo.toml @@ -6,13 +6,13 @@ version = "0.1.0" [dependencies] hex = {version = "0.4", default-features = false} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_lang_ir = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} metis_erc1155 = {path = "../../../token/erc1155/", default-features = false} metis_lang = {path = "../../../../lang/", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} @@ -21,13 +21,13 @@ scale-info = {version = "1.0", default-features = false, features = ["derive"]} [dev-dependencies] hex = {version = "0.4"} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} +ink_env = {version = "3.0.0-rc5"} +ink_lang = {version = "3.0.0-rc5"} +ink_lang_codegen = {version = "3.0.0-rc5"} +ink_lang_ir = {version = "3.0.0-rc5"} +ink_metadata = {version = "3.0.0-rc5"} +ink_primitives = {version = "3.0.0-rc5"} +ink_storage = {version = "3.0.0-rc5"} metis_erc1155 = {path = "../../erc1155/"} metis_lang = {path = "../../../../lang/"} metis_receiver_erc1155 = {path = "."} diff --git a/crates/components/token/receiver/erc721/Cargo.toml b/crates/components/token/receiver/erc721/Cargo.toml index e7df223..5d501c1 100644 --- a/crates/components/token/receiver/erc721/Cargo.toml +++ b/crates/components/token/receiver/erc721/Cargo.toml @@ -6,13 +6,13 @@ version = "0.1.0" [dependencies] hex = {version = "0.4", default-features = false} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_lang_ir = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} metis_erc721 = {path = "../../../token/erc721/", default-features = false} metis_lang = {path = "../../../../lang/", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} @@ -21,13 +21,13 @@ scale-info = {version = "1.0", default-features = false, features = ["derive"]} [dev-dependencies] hex = {version = "0.4"} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} +ink_env = {version = "3.0.0-rc5"} +ink_lang = {version = "3.0.0-rc5"} +ink_lang_codegen = {version = "3.0.0-rc5"} +ink_lang_ir = {version = "3.0.0-rc5"} +ink_metadata = {version = "3.0.0-rc5"} +ink_primitives = {version = "3.0.0-rc5"} +ink_storage = {version = "3.0.0-rc5"} metis_erc721 = {path = "../../erc721/"} metis_lang = {path = "../../../../lang/"} metis_receiver_erc721 = {path = "."} diff --git a/crates/components/utils/escrow/Cargo.toml b/crates/components/utils/escrow/Cargo.toml index fb19d99..b11cbc7 100644 --- a/crates/components/utils/escrow/Cargo.toml +++ b/crates/components/utils/escrow/Cargo.toml @@ -5,9 +5,9 @@ name = "metis_escrow" version = "0.1.0" [dependencies] -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} @@ -19,13 +19,13 @@ metis_ownable = {path = "../../access/ownable", default-features = false} [dev-dependencies] trybuild = {version = "1.0", features = ["diff"]} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} +ink_env = {version = "3.0.0-rc5"} +ink_lang = {version = "3.0.0-rc5"} +ink_lang_codegen = {version = "3.0.0-rc5"} +ink_lang_ir = {version = "3.0.0-rc5"} +ink_metadata = {version = "3.0.0-rc5"} +ink_primitives = {version = "3.0.0-rc5"} +ink_storage = {version = "3.0.0-rc5"} num-traits = {version = "0.2", features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", features = ["derive"]} diff --git a/crates/components/utils/escrow/stub/Cargo.toml b/crates/components/utils/escrow/stub/Cargo.toml index e7c4df4..2670dd1 100644 --- a/crates/components/utils/escrow/stub/Cargo.toml +++ b/crates/components/utils/escrow/stub/Cargo.toml @@ -5,11 +5,11 @@ name = "metis_escrow_stub" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} diff --git a/crates/lang/codegen/Cargo.toml b/crates/lang/codegen/Cargo.toml index ecfc50c..9b3ad0e 100644 --- a/crates/lang/codegen/Cargo.toml +++ b/crates/lang/codegen/Cargo.toml @@ -25,8 +25,8 @@ regex = "1.3" scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive", "full"]} syn = {version = "1.0", features = ["parsing", "full", "extra-traits"]} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_lang_codegen = {version = "3.0.0-rc5", default-features = false} +ink_lang_ir = {version = "3.0.0-rc5", default-features = false} [features] default = ["std"] diff --git a/crates/lang/contract/Cargo.toml b/crates/lang/contract/Cargo.toml index a9fa229..216aef9 100644 --- a/crates/lang/contract/Cargo.toml +++ b/crates/lang/contract/Cargo.toml @@ -9,11 +9,11 @@ name = "metis_contract" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} diff --git a/crates/lang/macro/Cargo.toml b/crates/lang/macro/Cargo.toml index e682b0a..864ab50 100644 --- a/crates/lang/macro/Cargo.toml +++ b/crates/lang/macro/Cargo.toml @@ -17,8 +17,8 @@ blake2 = "0.9" impl-serde = "0.3.1" -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_lang_codegen = {version = "3.0.0-rc5", default-features = false} +ink_lang_ir = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"]} @@ -31,14 +31,14 @@ metis_erc20 = {path = "../../components/token/erc20"} metis_ownable = {path = "../../components/access/ownable"} trybuild = {version = "1.0", features = ["diff"]} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_codegen = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_lang_ir = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink"} +ink_env = {version = "3.0.0-rc5"} +ink_lang = {version = "3.0.0-rc5"} +ink_lang_codegen = {version = "3.0.0-rc5"} +ink_lang_ir = {version = "3.0.0-rc5"} +ink_metadata = {version = "3.0.0-rc5"} +ink_prelude = {version = "3.0.0-rc5"} +ink_primitives = {version = "3.0.0-rc5"} +ink_storage = {version = "3.0.0-rc5"} num-traits = {version = "0.2", features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", features = ["derive"]} diff --git a/example/contracts/access-control/access-control/Cargo.toml b/example/contracts/access-control/access-control/Cargo.toml index 1b13946..2825e29 100644 --- a/example/contracts/access-control/access-control/Cargo.toml +++ b/example/contracts/access-control/access-control/Cargo.toml @@ -5,11 +5,11 @@ name = "access_control" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"], optional = true} diff --git a/example/contracts/access-control/ownable/Cargo.toml b/example/contracts/access-control/ownable/Cargo.toml index 6171688..a916a05 100644 --- a/example/contracts/access-control/ownable/Cargo.toml +++ b/example/contracts/access-control/ownable/Cargo.toml @@ -5,12 +5,12 @@ name = "ownable_erc20" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} diff --git a/example/contracts/governance/timelock-controller-receiver/Cargo.toml b/example/contracts/governance/timelock-controller-receiver/Cargo.toml index 81be25d..f854b9c 100644 --- a/example/contracts/governance/timelock-controller-receiver/Cargo.toml +++ b/example/contracts/governance/timelock-controller-receiver/Cargo.toml @@ -5,12 +5,12 @@ name = "timelock_controller_receiver" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/example/contracts/governance/timelock-controller/Cargo.toml b/example/contracts/governance/timelock-controller/Cargo.toml index dbcf796..90ec7df 100644 --- a/example/contracts/governance/timelock-controller/Cargo.toml +++ b/example/contracts/governance/timelock-controller/Cargo.toml @@ -5,12 +5,12 @@ name = "timelock_controller" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/example/contracts/security/reentrancy-guard/caller/Cargo.toml b/example/contracts/security/reentrancy-guard/caller/Cargo.toml index 14b4d67..cb45482 100644 --- a/example/contracts/security/reentrancy-guard/caller/Cargo.toml +++ b/example/contracts/security/reentrancy-guard/caller/Cargo.toml @@ -5,11 +5,11 @@ name = "reentrancy_guard_caller" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"], optional = true} diff --git a/example/contracts/security/reentrancy-guard/flipper/Cargo.toml b/example/contracts/security/reentrancy-guard/flipper/Cargo.toml index 93049d4..18e35c0 100644 --- a/example/contracts/security/reentrancy-guard/flipper/Cargo.toml +++ b/example/contracts/security/reentrancy-guard/flipper/Cargo.toml @@ -5,11 +5,11 @@ name = "reentrancy_guard_flipper" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"], optional = true} diff --git a/example/contracts/security/reentrancy-guard/traits/Cargo.toml b/example/contracts/security/reentrancy-guard/traits/Cargo.toml index d4cd439..be37912 100644 --- a/example/contracts/security/reentrancy-guard/traits/Cargo.toml +++ b/example/contracts/security/reentrancy-guard/traits/Cargo.toml @@ -5,11 +5,11 @@ name = "reentrancy_guard_traits" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"], optional = true} diff --git a/example/contracts/token/erc1155-burnable/Cargo.toml b/example/contracts/token/erc1155-burnable/Cargo.toml index e6b6c74..f9a92b9 100644 --- a/example/contracts/token/erc1155-burnable/Cargo.toml +++ b/example/contracts/token/erc1155-burnable/Cargo.toml @@ -5,12 +5,12 @@ name = "erc1155_burnable" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/example/contracts/token/erc1155-pausable/Cargo.toml b/example/contracts/token/erc1155-pausable/Cargo.toml index 294074a..e9325c9 100644 --- a/example/contracts/token/erc1155-pausable/Cargo.toml +++ b/example/contracts/token/erc1155-pausable/Cargo.toml @@ -5,12 +5,12 @@ name = "erc1155_pausable" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/example/contracts/token/erc1155-token-receiver/Cargo.toml b/example/contracts/token/erc1155-token-receiver/Cargo.toml index 1f424f2..1b8b306 100644 --- a/example/contracts/token/erc1155-token-receiver/Cargo.toml +++ b/example/contracts/token/erc1155-token-receiver/Cargo.toml @@ -6,12 +6,12 @@ version = "0.1.0" [dependencies] hex = {version = "0.4", default-features = false} -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} metis_erc1155 = {path = "../../../../crates/components/token/erc1155/", default-features = false} metis_erc721 = {path = "../../../../crates/components/token/erc721/", default-features = false} metis_lang = {path = "../../../../crates/lang", default-features = false} diff --git a/example/contracts/token/erc1155/Cargo.toml b/example/contracts/token/erc1155/Cargo.toml index 160ddbf..8de3c68 100644 --- a/example/contracts/token/erc1155/Cargo.toml +++ b/example/contracts/token/erc1155/Cargo.toml @@ -5,12 +5,12 @@ name = "erc1155" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/example/contracts/token/erc20-burnable/Cargo.toml b/example/contracts/token/erc20-burnable/Cargo.toml index 3e6b2d8..83f2f1b 100644 --- a/example/contracts/token/erc20-burnable/Cargo.toml +++ b/example/contracts/token/erc20-burnable/Cargo.toml @@ -5,12 +5,12 @@ name = "erc20_burnable" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} diff --git a/example/contracts/token/erc20-capped/Cargo.toml b/example/contracts/token/erc20-capped/Cargo.toml index e549156..0204520 100644 --- a/example/contracts/token/erc20-capped/Cargo.toml +++ b/example/contracts/token/erc20-capped/Cargo.toml @@ -5,12 +5,12 @@ name = "erc20_capped" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} diff --git a/example/contracts/token/erc20-pausable/Cargo.toml b/example/contracts/token/erc20-pausable/Cargo.toml index 7832285..c96ce04 100644 --- a/example/contracts/token/erc20-pausable/Cargo.toml +++ b/example/contracts/token/erc20-pausable/Cargo.toml @@ -5,12 +5,12 @@ name = "erc20_pausable" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} diff --git a/example/contracts/token/erc20/Cargo.toml b/example/contracts/token/erc20/Cargo.toml index e17f0d3..7e4b20e 100644 --- a/example/contracts/token/erc20/Cargo.toml +++ b/example/contracts/token/erc20/Cargo.toml @@ -5,12 +5,12 @@ name = "erc20_basic" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} diff --git a/example/contracts/token/erc721-burnable/Cargo.toml b/example/contracts/token/erc721-burnable/Cargo.toml index 317776f..8c91dd6 100644 --- a/example/contracts/token/erc721-burnable/Cargo.toml +++ b/example/contracts/token/erc721-burnable/Cargo.toml @@ -5,12 +5,12 @@ name = "erc721_burnable" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/example/contracts/token/erc721-enumerable/Cargo.toml b/example/contracts/token/erc721-enumerable/Cargo.toml index 61fd89f..cfb958c 100644 --- a/example/contracts/token/erc721-enumerable/Cargo.toml +++ b/example/contracts/token/erc721-enumerable/Cargo.toml @@ -5,12 +5,12 @@ name = "erc721_enumerable" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/example/contracts/token/erc721-pausable/Cargo.toml b/example/contracts/token/erc721-pausable/Cargo.toml index e63c192..429b178 100644 --- a/example/contracts/token/erc721-pausable/Cargo.toml +++ b/example/contracts/token/erc721-pausable/Cargo.toml @@ -5,12 +5,12 @@ name = "erc721_pausable" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/example/contracts/token/erc721-token-receiver/Cargo.toml b/example/contracts/token/erc721-token-receiver/Cargo.toml index bde4a0c..7984d36 100644 --- a/example/contracts/token/erc721-token-receiver/Cargo.toml +++ b/example/contracts/token/erc721-token-receiver/Cargo.toml @@ -5,12 +5,12 @@ name = "erc721_token_receiver" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"], optional = true} diff --git a/example/contracts/token/erc721-urlstorage/Cargo.toml b/example/contracts/token/erc721-urlstorage/Cargo.toml index 700d988..0075986 100644 --- a/example/contracts/token/erc721-urlstorage/Cargo.toml +++ b/example/contracts/token/erc721-urlstorage/Cargo.toml @@ -5,12 +5,12 @@ name = "erc721_urlstorage" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/example/contracts/token/erc721/Cargo.toml b/example/contracts/token/erc721/Cargo.toml index 00994e8..5b7a5eb 100644 --- a/example/contracts/token/erc721/Cargo.toml +++ b/example/contracts/token/erc721/Cargo.toml @@ -5,12 +5,12 @@ name = "erc721" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/example/contracts/token/erc777/Cargo.toml b/example/contracts/token/erc777/Cargo.toml index 518fa57..98d8703 100644 --- a/example/contracts/token/erc777/Cargo.toml +++ b/example/contracts/token/erc777/Cargo.toml @@ -5,12 +5,12 @@ name = "erc777" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_prelude = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_prelude = {version = "3.0.0-rc5", default-features = false} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} hex = {version = "0.4", default-features = false} num-traits = {version = "0.2", default-features = false, features = ["i128"]} diff --git a/example/contracts/tools/erc165/Cargo.toml b/example/contracts/tools/erc165/Cargo.toml index 656120b..5e4ae24 100644 --- a/example/contracts/tools/erc165/Cargo.toml +++ b/example/contracts/tools/erc165/Cargo.toml @@ -5,11 +5,11 @@ name = "erc165" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"], optional = true} diff --git a/example/contracts/utils/escrow/Cargo.toml b/example/contracts/utils/escrow/Cargo.toml index 1e5e706..415efdf 100644 --- a/example/contracts/utils/escrow/Cargo.toml +++ b/example/contracts/utils/escrow/Cargo.toml @@ -5,11 +5,11 @@ name = "escrow" version = "0.1.0" [dependencies] -ink_env = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_lang = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_metadata = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false, features = ["derive"], optional = true} -ink_primitives = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} -ink_storage = {version = "3.0.0-rc5", git = "https://github.com/paritytech/ink", default-features = false} +ink_env = {version = "3.0.0-rc5", default-features = false} +ink_lang = {version = "3.0.0-rc5", default-features = false} +ink_metadata = {version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true} +ink_primitives = {version = "3.0.0-rc5", default-features = false} +ink_storage = {version = "3.0.0-rc5", default-features = false} scale = {package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"]} scale-info = {version = "1.0", default-features = false, features = ["derive"], optional = true}