mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 13:21:01 +00:00
Update builds and fix up test-runtime.
This commit is contained in:
Generated
-1
@@ -1521,7 +1521,6 @@ dependencies = [
|
|||||||
"substrate-primitives 0.1.0",
|
"substrate-primitives 0.1.0",
|
||||||
"substrate-runtime-io 0.1.0",
|
"substrate-runtime-io 0.1.0",
|
||||||
"substrate-runtime-std 0.1.0",
|
"substrate-runtime-std 0.1.0",
|
||||||
"substrate-state-machine 0.1.0",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|||||||
-1
@@ -649,7 +649,6 @@ dependencies = [
|
|||||||
"substrate-primitives 0.1.0",
|
"substrate-primitives 0.1.0",
|
||||||
"substrate-runtime-io 0.1.0",
|
"substrate-runtime-io 0.1.0",
|
||||||
"substrate-runtime-std 0.1.0",
|
"substrate-runtime-std 0.1.0",
|
||||||
"substrate-state-machine 0.1.0",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -4,19 +4,18 @@ version = "0.1.0"
|
|||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
hex-literal = "0.1.0"
|
hex-literal = { version = "0.1.0", optional = true }
|
||||||
substrate-runtime-std = { path = "../runtime-std", default_features = false }
|
substrate-runtime-std = { path = "../runtime-std", default_features = false }
|
||||||
substrate-runtime-io = { path = "../runtime-io", default_features = false }
|
substrate-runtime-io = { path = "../runtime-io", default_features = false }
|
||||||
environmental = { path = "../environmental", optional = true }
|
environmental = { path = "../environmental", optional = true }
|
||||||
substrate-state-machine = { path = "../state-machine", optional = true }
|
|
||||||
substrate-primitives = { path = "../primitives", default_features = false }
|
substrate-primitives = { path = "../primitives", default_features = false }
|
||||||
substrate-codec = { path = "../codec", default_features = false }
|
substrate-codec = { path = "../codec", default_features = false }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
std = [
|
std = [
|
||||||
|
"hex-literal",
|
||||||
"environmental",
|
"environmental",
|
||||||
"substrate-state-machine",
|
|
||||||
"substrate-primitives/std",
|
"substrate-primitives/std",
|
||||||
"substrate-runtime-io/std",
|
"substrate-runtime-io/std",
|
||||||
"substrate-codec/std",
|
"substrate-codec/std",
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ extern crate substrate_runtime_std as rstd;
|
|||||||
extern crate substrate_runtime_io as runtime_io;
|
extern crate substrate_runtime_io as runtime_io;
|
||||||
extern crate substrate_runtime_support as runtime_support;
|
extern crate substrate_runtime_support as runtime_support;
|
||||||
extern crate substrate_codec as codec;
|
extern crate substrate_codec as codec;
|
||||||
#[cfg_attr(test, macro_use)] extern crate hex_literal;
|
#[cfg(test)] #[macro_use] extern crate hex_literal;
|
||||||
#[cfg_attr(test, macro_use)] extern crate substrate_primitives as primitives;
|
#[cfg_attr(test, macro_use)] extern crate substrate_primitives as primitives;
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
|
|||||||
+1
-1
@@ -626,7 +626,6 @@ dependencies = [
|
|||||||
"substrate-primitives 0.1.0",
|
"substrate-primitives 0.1.0",
|
||||||
"substrate-runtime-io 0.1.0",
|
"substrate-runtime-io 0.1.0",
|
||||||
"substrate-runtime-std 0.1.0",
|
"substrate-runtime-std 0.1.0",
|
||||||
"substrate-state-machine 0.1.0",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -646,6 +645,7 @@ dependencies = [
|
|||||||
name = "substrate-test-runtime"
|
name = "substrate-test-runtime"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"hex-literal 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"substrate-codec 0.1.0",
|
"substrate-codec 0.1.0",
|
||||||
"substrate-primitives 0.1.0",
|
"substrate-primitives 0.1.0",
|
||||||
"substrate-runtime-io 0.1.0",
|
"substrate-runtime-io 0.1.0",
|
||||||
|
|||||||
@@ -7,20 +7,22 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
|||||||
crate-type = ["cdylib"]
|
crate-type = ["cdylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
substrate-codec = { path = "../../codec", default-features = false }
|
hex-literal = { version = "0.1.0", optional = true }
|
||||||
substrate-runtime-std = { path = "../../runtime-std", default-features = false }
|
substrate-codec = { path = "../../../substrate/codec", default-features = false }
|
||||||
substrate-runtime-io = { path = "../../runtime-io", default-features = false }
|
substrate-runtime-std = { path = "../../../substrate/runtime-std", default-features = false }
|
||||||
substrate-runtime-support = { path = "../../runtime-support", default-features = false }
|
substrate-runtime-io = { path = "../../../substrate/runtime-io", default-features = false }
|
||||||
substrate-primitives = { path = "../../primitives", default-features = false }
|
substrate-runtime-support = { path = "../../../substrate/runtime-support", default-features = false }
|
||||||
|
substrate-primitives = { path = "../../../substrate/primitives", default-features = false }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
std = [
|
std = [
|
||||||
|
"hex-literal",
|
||||||
"substrate-codec/std",
|
"substrate-codec/std",
|
||||||
"substrate-runtime-io/std",
|
"substrate-runtime-io/std",
|
||||||
"substrate-runtime-std/std",
|
"substrate-runtime-std/std",
|
||||||
"substrate-runtime-support/std",
|
"substrate-runtime-support/std",
|
||||||
"substrate-primitives/std"
|
"substrate-primitives/std",
|
||||||
]
|
]
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
|
|||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
Reference in New Issue
Block a user