mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
aa21e56744
* Remove mem_info and some references to parity-util-mem * [Draft] Finish removing references to `parity-util-mem` * Upgrade dependencies * Update scripts/ci/deny.toml Co-authored-by: ordian <write@reusable.software> * Fix Cargo.lock (remove unwanted dependency changes) * Removed unused argument * Run cargo fmt (didn't have pre-commit set up) * Fix some CI errors * Fix another CI error * Remove unused dependency Co-authored-by: ordian <write@reusable.software>
32 lines
915 B
TOML
32 lines
915 B
TOML
[package]
|
|
name = "sp-test-primitives"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0.136", features = ["derive"], optional = true }
|
|
sp-application-crypto = { version = "7.0.0", default-features = false, path = "../application-crypto" }
|
|
sp-core = { version = "7.0.0", default-features = false, path = "../core" }
|
|
sp-runtime = { version = "7.0.0", default-features = false, path = "../runtime" }
|
|
|
|
[features]
|
|
default = [
|
|
"std",
|
|
]
|
|
std = [
|
|
"codec/std",
|
|
"serde",
|
|
"sp-application-crypto/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
]
|