Cargo.toml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. common = { package = 'pallet-common', default-features = false, path = '../common'}
  15. sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  16. # Benchmarking
  17. frame-benchmarking = { package = 'frame-benchmarking', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca', optional = true}
  18. council = { package = 'pallet-council', default-features = false, path = '../council'}
  19. referendum = { package = 'pallet-referendum', default-features = false, path = '../referendum'}
  20. membership = { package = 'pallet-membership', default-features = false, path = '../membership'}
  21. [dev-dependencies]
  22. pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  23. sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  24. sp-core = { package = 'sp-core', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  25. sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  26. membership = { package = 'pallet-membership', default-features = false, path = '../membership'}
  27. council = { package = 'pallet-council', default-features = false, path = '../council'}
  28. staking-handler = { package = 'pallet-staking-handler', default-features = false, path = '../staking-handler'}
  29. [features]
  30. default = ['std']
  31. runtime-benchmarks = [
  32. "frame-benchmarking",
  33. "sp-runtime/runtime-benchmarks",
  34. "council/runtime-benchmarks",
  35. "membership/runtime-benchmarks"
  36. ]
  37. std = [
  38. 'serde',
  39. 'codec/std',
  40. 'sp-arithmetic/std',
  41. 'sp-std/std',
  42. 'frame-support/std',
  43. 'frame-system/std',
  44. 'balances/std',
  45. 'common/std',
  46. 'sp-runtime/std',
  47. ]