47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
TOML
[package]
|
|
description = "FRAME's mixnet pallet"
|
|
name = "pezpallet-mixnet"
|
|
version = "0.4.0"
|
|
license = "Apache-2.0"
|
|
authors = [
|
|
"Kurdistan Tech Institute <info@pezkuwichain.io>",
|
|
"Parity Technologies <admin@parity.io>",
|
|
]
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
readme = "README.md"
|
|
documentation = "https://docs.rs/pezpallet-mixnet"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive", "max-encoded-len"], workspace = true }
|
|
frame = { workspace = true, features = ["runtime"] }
|
|
log = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
serde = { features = ["derive"], workspace = true }
|
|
pezsp-application-crypto = { workspace = true }
|
|
pezsp-mixnet = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame/std",
|
|
"log/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"pezsp-application-crypto/std",
|
|
"pezsp-mixnet/std",
|
|
]
|
|
try-runtime = ["frame/try-runtime"]
|
|
runtime-benchmarks = [
|
|
"frame/runtime-benchmarks",
|
|
"pezsp-mixnet/runtime-benchmarks",
|
|
]
|