Skip to content

Commit

Permalink
Add pallet-signal (#12)
Browse files Browse the repository at this point in the history
Add pallet-signal
  • Loading branch information
vayesy authored Mar 13, 2022
1 parent 8eb87a5 commit 818b321
Show file tree
Hide file tree
Showing 6 changed files with 1,943 additions and 0 deletions.
68 changes: 68 additions & 0 deletions signal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
# ███░▄▄▄█░▄▄▀█░▄▀▄░█░▄▄█░▄▀█░▄▄▀█▀▄▄▀██
# ███░█▄▀█░▀▀░█░█▄█░█░▄▄█░█░█░▀▀░█░██░██
# ███▄▄▄▄█▄██▄█▄███▄█▄▄▄█▄▄██▄██▄██▄▄███
# ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀

[package]
name = 'pallet-signal'
version = '0.1.0'
authors = ['zero.io','gamedao.co']
repository = 'https://github.com/gamedaoco/gamedao-protocol'
edition = '2018'
license = 'GPL-3.0-or-later'
description = 'Signal pallet'

[package.metadata.substrate]
categories = [
'zero',
'core',
'pallet'
]

[dependencies]
serde = { version = "1.0.136", optional = true }
codec = { package = "parity-scale-codec", version = "2.3.1", default-features = false }
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false, optional = true }
orml-traits = { path = "../../orml/traits", default-features = false }
zero-primitives = { package = "zero-primitives", path = "../../primitives", default-features = false }
support = { package = "gamedao-protocol-support", path = "../support", default-features = false }

[dev-dependencies]
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.13" }
frame-support-test = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.13" }
pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }

orml-tokens = { path = "../../orml/tokens", default-features = false }
orml-currencies = { path = "../../orml/currencies", default-features = false }

[features]
default = ['std']
runtime-benchmarks = ['frame-benchmarking']
std = [
'codec/std',
'serde/std',
'scale-info/std',

'frame-support/std',
'frame-system/std',
'frame-benchmarking/std',

'sp-core/std',
'sp-std/std',
'sp-runtime/std',

"orml-traits/std",
"orml-tokens/std",
"orml-currencies/std",

"support/std"
]
try-runtime = ['frame-support/try-runtime']
Loading

0 comments on commit 818b321

Please sign in to comment.