Skip to content
Snippets Groups Projects
Cargo.toml 1.54 KiB
Newer Older
wangjj9219's avatar
wangjj9219 committed
[package]
name = "orml-authority"
description = "Utility pallet to perform ROOT calls in a PoA network"
wangjj9219's avatar
wangjj9219 committed
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/auction"
license = "Apache-2.0"
Bryan Chen's avatar
Bryan Chen committed
version = "0.4.1-dev"
wangjj9219's avatar
wangjj9219 committed
authors = ["Acala Developers"]
edition = "2018"

[dependencies]
serde = { version = "1.0.124", optional = true }
wangjj9219's avatar
wangjj9219 committed
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
Shaun Wang's avatar
Shaun Wang committed
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
Shaun Wang's avatar
Shaun Wang committed
frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
wangjj9219's avatar
wangjj9219 committed
[dev-dependencies]
Shaun Wang's avatar
Shaun Wang committed
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
wangjj9219's avatar
wangjj9219 committed

[features]
default = ["std"]
std = [
	"serde",
	"codec/std",
	"sp-runtime/std",
	"sp-std/std",
	"frame-support/std",
	"frame-system/std",
]
runtime-benchmarks = [
	"frame-support/runtime-benchmarks",
	"frame-system/runtime-benchmarks",
wangjj9219's avatar
wangjj9219 committed
try-runtime = ["frame-support/try-runtime"]