diff --git a/Cargo.lock b/Cargo.lock index 97f019df7b..8f55f988e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -957,16 +957,6 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" -[[package]] -name = "frame-metadata" -version = "15.0.0" -dependencies = [ - "cfg-if", - "parity-scale-codec", - "scale-info", - "serde", -] - [[package]] name = "frame-metadata" version = "15.0.0" @@ -978,6 +968,17 @@ dependencies = [ "scale-info", ] +[[package]] +name = "frame-metadata" +version = "15.0.0" +source = "git+https://github.com/paritytech/frame-metadata/?branch=lexnv/md_v15_test#35b8304e004f9a759aa2663e24c5f56e2a50c301" +dependencies = [ + "cfg-if", + "parity-scale-codec", + "scale-info", + "serde", +] + [[package]] name = "funty" version = "2.0.0" @@ -1507,7 +1508,7 @@ name = "integration-tests" version = "0.25.0" dependencies = [ "assert_matches", - "frame-metadata 15.0.0", + "frame-metadata 15.0.0 (git+https://github.com/paritytech/frame-metadata/?branch=lexnv/md_v15_test)", "futures", "hex", "parity-scale-codec", @@ -3337,7 +3338,7 @@ dependencies = [ "bitvec", "blake2", "derivative", - "frame-metadata 15.0.0", + "frame-metadata 15.0.0 (git+https://github.com/paritytech/frame-metadata/?branch=lexnv/md_v15_test)", "futures", "getrandom 0.2.8", "hex", @@ -3370,7 +3371,7 @@ version = "0.25.0" dependencies = [ "clap 4.1.1", "color-eyre", - "frame-metadata 15.0.0", + "frame-metadata 15.0.0 (git+https://github.com/paritytech/frame-metadata/?branch=lexnv/md_v15_test)", "hex", "jsonrpsee", "parity-scale-codec", @@ -3388,7 +3389,7 @@ version = "0.25.0" dependencies = [ "bitvec", "darling", - "frame-metadata 15.0.0", + "frame-metadata 15.0.0 (git+https://github.com/paritytech/frame-metadata/?branch=lexnv/md_v15_test)", "heck", "hex", "jsonrpsee", @@ -3434,7 +3435,7 @@ version = "0.25.0" dependencies = [ "bitvec", "criterion", - "frame-metadata 15.0.0", + "frame-metadata 15.0.0 (git+https://github.com/paritytech/frame-metadata/?branch=lexnv/md_v15_test)", "parity-scale-codec", "scale-info", "sp-core-hashing", @@ -3810,7 +3811,7 @@ checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" name = "ui-tests" version = "0.25.0" dependencies = [ - "frame-metadata 15.0.0", + "frame-metadata 15.0.0 (git+https://github.com/paritytech/frame-metadata/?branch=lexnv/md_v15_test)", "parity-scale-codec", "scale-info", "subxt", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f5cd03c309..070ce58f6a 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -31,7 +31,7 @@ serde_json = "1.0.68" # hex encoded metadata to bytes hex = "0.4.3" # actual metadata types -frame-metadata = { version = "15.0.0", path = "/home/lexnv/remote-builds/frame-metadata/frame-metadata", features = ["v14", "v15-unstable", "std"] } +frame-metadata = { version = "15.0.0", git = "https://github.com/paritytech/frame-metadata/", branch = "lexnv/md_v15_test", default-features = false, features = ["std", "v14", "v15-unstable"] } # decode bytes into the metadata types scale = { package = "parity-scale-codec", version = "3.0.0", default-features = false } # generate the item mod for codegen diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index 53e236c7ea..8ab58a4013 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -14,7 +14,7 @@ description = "Generate an API for interacting with a substrate node from FRAME [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full"] } darling = "0.14.0" -frame-metadata = { version = "15.0.0", path = "/home/lexnv/remote-builds/frame-metadata/frame-metadata", features = ["v14", "v15-unstable", "std"] } +frame-metadata = { version = "15.0.0", git = "https://github.com/paritytech/frame-metadata/", branch = "lexnv/md_v15_test", default-features = false, features = ["std", "v14", "v15-unstable"] } heck = "0.4.0" proc-macro2 = "1.0.24" proc-macro-error = "1.0.4" diff --git a/metadata/Cargo.toml b/metadata/Cargo.toml index e4ccf07ad3..edbdb31de3 100644 --- a/metadata/Cargo.toml +++ b/metadata/Cargo.toml @@ -14,7 +14,7 @@ description = "Command line utilities for checking metadata compatibility betwee [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full"] } -frame-metadata = { version = "15.0.0", path = "/home/lexnv/remote-builds/frame-metadata/frame-metadata", features = ["v14", "v15-unstable", "std"] } +frame-metadata = { version = "15.0.0", git = "https://github.com/paritytech/frame-metadata/", branch = "lexnv/md_v15_test", default-features = false, features = ["std", "v14", "v15-unstable"] } scale-info = "2.0.0" sp-core-hashing = "6.0.0" diff --git a/subxt/Cargo.toml b/subxt/Cargo.toml index 9dd7d133e6..fc05305dcd 100644 --- a/subxt/Cargo.toml +++ b/subxt/Cargo.toml @@ -47,7 +47,7 @@ serde_json = { version = "1.0.64", features = ["raw_value"] } thiserror = "1.0.24" tracing = "0.1.34" parking_lot = "0.12.0" -frame-metadata = { version = "15.0.0", path = "/home/lexnv/remote-builds/frame-metadata/frame-metadata", features = ["v14", "v15-unstable", "std"] } +frame-metadata = { version = "15.0.0", git = "https://github.com/paritytech/frame-metadata/", branch = "lexnv/md_v15_test", default-features = false, features = ["std", "v14", "v15-unstable"] } derivative = "2.2.0" subxt-macro = { version = "0.25.0", path = "../macro" } diff --git a/testing/integration-tests/Cargo.toml b/testing/integration-tests/Cargo.toml index 26a82db35d..930c1bfa90 100644 --- a/testing/integration-tests/Cargo.toml +++ b/testing/integration-tests/Cargo.toml @@ -18,7 +18,7 @@ default = ["subxt/integration-tests"] [dev-dependencies] assert_matches = "1.5.0" codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] } -frame-metadata = { version = "15.0.0", path = "/home/lexnv/remote-builds/frame-metadata/frame-metadata", features = ["v14", "v15-unstable", "std"] } +frame-metadata = { version = "15.0.0", git = "https://github.com/paritytech/frame-metadata/", branch = "lexnv/md_v15_test", default-features = false, features = ["std", "v14", "v15-unstable"] } futures = "0.3.13" hex = "0.4.3" regex = "1.5.0" diff --git a/testing/ui-tests/Cargo.toml b/testing/ui-tests/Cargo.toml index a1b6e07aa2..35cd0e6fb3 100644 --- a/testing/ui-tests/Cargo.toml +++ b/testing/ui-tests/Cargo.toml @@ -11,6 +11,6 @@ publish = false [dev-dependencies] trybuild = "1.0.76" scale-info = { version = "2.3.0", features = ["bit-vec"] } -frame-metadata = { version = "15.0.0", path = "/home/lexnv/remote-builds/frame-metadata/frame-metadata", features = ["v14", "v15-unstable", "std"] } +frame-metadata = { version = "15.0.0", git = "https://github.com/paritytech/frame-metadata/", branch = "lexnv/md_v15_test", default-features = false, features = ["std", "v14", "v15-unstable"] } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] } subxt = { path = "../../subxt" }