From add577bca715465ab959a466fa60eadd43eb46fb Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 23 Jun 2021 14:18:16 +0200 Subject: [PATCH] Facilitate publishing by removing version in codec dev-dependency Cargo will automatically strip dev-dependency for us, which removes the need for manually doing so before publishing the crates. See https://github.com/rust-lang/cargo/pull/7333 --- derive/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 767886797..257376b06 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -16,4 +16,4 @@ proc-macro2 = "1.0.6" proc-macro-crate = "1.0.0" [dev-dependencies] -parity-scale-codec = { path = "..", version = "2.2.0-rc.1" } +parity-scale-codec = { path = ".." }