From 76b99ca758a35a95b58cee4eb27c61fc0b435ae5 Mon Sep 17 00:00:00 2001 From: Andrew Jones Date: Thu, 1 Dec 2022 17:47:18 +0000 Subject: [PATCH] Bump minimum requirement of `scale-info` in template to `2.3` --- crates/build/templates/new/_Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/build/templates/new/_Cargo.toml b/crates/build/templates/new/_Cargo.toml index 5b7d0456e..f69f6d194 100644 --- a/crates/build/templates/new/_Cargo.toml +++ b/crates/build/templates/new/_Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" ink = { version = "4.0.0-beta", default-features = false } scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] } -scale-info = { version = "2", default-features = false, features = ["derive"], optional = true } +scale-info = { version = "2.3", default-features = false, features = ["derive"], optional = true } [lib] name = "{{name}}"