From 9cb8a2cae83ba954251453edfbbbae852d9fdebc Mon Sep 17 00:00:00 2001 From: Svyatoslav Nikolsky Date: Tue, 19 Mar 2024 12:13:29 +0300 Subject: [PATCH] fixed dependency in runtime-codegen (#2886) --- tools/runtime-codegen/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/runtime-codegen/Cargo.toml b/tools/runtime-codegen/Cargo.toml index de281f55aae06..24fe717f30f15 100644 --- a/tools/runtime-codegen/Cargo.toml +++ b/tools/runtime-codegen/Cargo.toml @@ -15,7 +15,7 @@ clap = { version = "4.4.6", features = ["derive", "cargo"] } codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false, features = ["derive"] } color-eyre = "0.6.1" proc-macro2 = "1.0.56" -quote = { workspace = true } +quote = { version = "1.0.33" } subxt-codegen = { git = "https://github.com/paritytech/subxt", branch = "master", default-features = false, features = ["fetch-metadata"] } wasm-loader = { git = "https://github.com/chevdor/subwasm", branch = "master" } wasm-testbed = { git = "https://github.com/chevdor/subwasm", branch = "master" }