bfc2cc5284
Replace all docs.rs documentation URLs with documentation.workspace = true to inherit from the workspace's docs.pezkuwichain.io URL.
30 lines
843 B
TOML
30 lines
843 B
TOML
[package]
|
|
name = "pezpallet-insecure-randomness-collective-flip"
|
|
version = "16.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Insecure do not use in production: FRAME randomness collective flip pezpallet"
|
|
readme = "README.md"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
frame = { workspace = true, features = ["runtime"] }
|
|
safe-mix = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["codec/std", "frame/std", "safe-mix/std", "scale-info/std"]
|
|
try-runtime = ["frame/try-runtime"]
|
|
runtime-benchmarks = ["frame/runtime-benchmarks"]
|