From 0ed31413f1ce33d2a6ac42b0d2c07a0345be2149 Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Fri, 2 Oct 2020 10:15:47 +0200 Subject: [PATCH] [template] now uses ink_env and ink_storage --- templates/new/_Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/templates/new/_Cargo.toml b/templates/new/_Cargo.toml index df71d79d..0d326d27 100644 --- a/templates/new/_Cargo.toml +++ b/templates/new/_Cargo.toml @@ -7,7 +7,8 @@ edition = "2018" [dependencies] ink_metadata = { git = "https://github.com/paritytech/ink", branch = "master", package = "ink_metadata", default-features = false, features = ["derive"], optional = true } ink_primitives = { git = "https://github.com/paritytech/ink", branch = "master", default-features = false } -ink_core = { git = "https://github.com/paritytech/ink", branch = "master", package = "ink_core", default-features = false } +ink_env = { git = "https://github.com/paritytech/ink", branch = "master", package = "ink_env", default-features = false } +ink_storage = { git = "https://github.com/paritytech/ink", branch = "master", package = "ink_storage", default-features = false } ink_lang = { git = "https://github.com/paritytech/ink", branch = "master", package = "ink_lang", default-features = false } scale = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive"] } @@ -25,7 +26,8 @@ crate-type = [ default = ["std"] std = [ "ink_metadata/std", - "ink_core/std", + "ink_env/std", + "ink_storage/std", "ink_primitives/std", "scale/std", "scale-info/std", -- GitLab