-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
31 lines (29 loc) · 1.18 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "pallet-mandate"
version = "2.0.8"
authors = ["Eliott Teissonniere <[email protected]>"]
edition = "2018"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/ETeissonniere/pallet-mandate"
description = "A Substrate pallet to help over modules dispatch root calls"
[features]
default = ["std"]
std = [
"frame-support/std",
"frame-system/std",
"parity-scale-codec/std",
"serde",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
]
[dependencies]
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false }
parity-scale-codec = { version = "2.1.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.125", optional = true, features = ["derive"] }
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false }