[package] name = 'pallet-proposals-codex' version = '3.2.0' authors = ['Joystream contributors'] edition = '2018' [dependencies] serde = { version = "1.0.101", optional = true, features = ["derive"] } codec = { package = 'parity-scale-codec', version = '1.3.4', default-features = false, features = ['derive'] } sp-std = { package = 'sp-std', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'} frame-support = { package = 'frame-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'} sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'} sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'} frame-system = { package = 'frame-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'} staking = { package = 'pallet-staking', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'} pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'} balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'} membership = { package = 'pallet-membership', default-features = false, path = '../../membership'} stake = { package = 'pallet-stake', default-features = false, path = '../../stake'} governance = { package = 'pallet-governance', default-features = false, path = '../../governance'} hiring = { package = 'pallet-hiring', default-features = false, path = '../../hiring'} minting = { package = 'pallet-token-mint', default-features = false, path = '../../token-minting'} working-group = { package = 'pallet-working-group', default-features = false, path = '../../working-group'} common = { package = 'pallet-common', default-features = false, path = '../../common'} proposals-engine = { package = 'pallet-proposals-engine', default-features = false, path = '../engine'} proposals-discussion = { package = 'pallet-proposals-discussion', default-features = false, path = '../discussion'} [dev-dependencies] sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'} sp-core = { package = 'sp-core', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'} sp-staking = { package = 'sp-staking', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'} pallet-staking-reward-curve = { package = 'pallet-staking-reward-curve', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'} recurring-rewards = { package = 'pallet-recurring-reward', default-features = false, path = '../../recurring-reward'} strum = {version = "0.19", default-features = false} [features] default = ['std'] std = [ 'serde', 'codec/std', 'sp-std/std', 'frame-support/std', 'sp-arithmetic/std', 'sp-runtime/std', 'frame-system/std', 'staking/std', 'pallet-timestamp/std', 'balances/std', 'membership/std', 'stake/std', 'governance/std', 'hiring/std', 'minting/std', 'working-group/std', 'common/std', 'proposals-engine/std', 'proposals-discussion/std', ]