diff --git a/templates/new/_Cargo.toml b/templates/new/_Cargo.toml index df71d79d9b837ca0e3dbee7bee044c1b06ff6d40..0d326d27d8aedbf9fb2b9e09941125f3624ffbc6 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",