Cargo.toml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [package]
  2. name = 'pallet-bounty'
  3. version = '1.0.1'
  4. authors = ['Joystream contributors']
  5. edition = '2018'
  6. [dependencies]
  7. serde = { version = "1.0.101", optional = true, features = ["derive"] }
  8. codec = { package = 'parity-scale-codec', version = '1.3.4', default-features = false, features = ['derive'] }
  9. sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  10. sp-std = { package = 'sp-std', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  11. frame-support = { package = 'frame-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  12. frame-system = { package = 'frame-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  13. balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  14. sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  15. common = { package = 'pallet-common', default-features = false, path = '../common'}
  16. staking-handler = { package = 'pallet-staking-handler', default-features = false, path = '../staking-handler'}
  17. # Benchmarking
  18. frame-benchmarking = { package = 'frame-benchmarking', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca', optional = true}
  19. council = { package = 'pallet-council', default-features = false, path = '../council'}
  20. referendum = { package = 'pallet-referendum', default-features = false, path = '../referendum'}
  21. membership = { package = 'pallet-membership', default-features = false, path = '../membership'}
  22. [dev-dependencies]
  23. pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  24. sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  25. sp-core = { package = 'sp-core', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  26. sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  27. membership = { package = 'pallet-membership', default-features = false, path = '../membership'}
  28. council = { package = 'pallet-council', default-features = false, path = '../council'}
  29. staking-handler = { package = 'pallet-staking-handler', default-features = false, path = '../staking-handler'}
  30. [features]
  31. default = ['std']
  32. runtime-benchmarks = [
  33. "frame-benchmarking",
  34. "sp-runtime/runtime-benchmarks",
  35. "council/runtime-benchmarks",
  36. "membership/runtime-benchmarks"
  37. ]
  38. std = [
  39. 'serde',
  40. 'codec/std',
  41. 'sp-arithmetic/std',
  42. 'sp-std/std',
  43. 'frame-support/std',
  44. 'frame-system/std',
  45. 'balances/std',
  46. 'sp-runtime/std',
  47. 'common/std',
  48. 'staking-handler/std',
  49. ]