32 lines
866 B
TOML
32 lines
866 B
TOML
[package]
|
|
name = "sp-application-crypto-test"
|
|
version = "2.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Integration tests for application-crypto"
|
|
license = "Apache-2.0"
|
|
publish = false
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sp-api = { workspace = true, default-features = true }
|
|
sp-application-crypto = { workspace = true, default-features = true }
|
|
sp-core = { workspace = true }
|
|
sp-keystore = { workspace = true }
|
|
sp-tracing = { workspace = true, default-features = true }
|
|
substrate-test-runtime-client = { workspace = true }
|
|
|
|
[features]
|
|
bls-experimental = ["substrate-test-runtime-client/bls-experimental"]
|
|
runtime-benchmarks = [
|
|
"sp-api/runtime-benchmarks",
|
|
"substrate-test-runtime-client/runtime-benchmarks",
|
|
]
|