Cargo.toml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = 'pallet-blog'
  3. version = '3.0.0'
  4. authors = ['Joystream contributors']
  5. edition = '2018'
  6. [dependencies]
  7. sp-std = { package = 'sp-std', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  8. sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  9. frame-support = { package = 'frame-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  10. frame-system = { package = 'frame-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  11. codec = { package = 'parity-scale-codec', version = '1.0.0', default-features = false, features = ['derive'] }
  12. sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  13. common = { package = 'pallet-common', default-features = false, path = '../common'}
  14. balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  15. #Benchmark dependencies
  16. frame-benchmarking = { package = 'frame-benchmarking', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca', optional = true}
  17. membership = { package = 'pallet-membership', default-features = false, path = '../membership', optional = true}
  18. [dev-dependencies]
  19. sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  20. sp-core = { package = 'sp-core', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  21. membership = { package = 'pallet-membership', default-features = false, path = '../membership' }
  22. staking-handler = { package = 'pallet-staking-handler', default-features = false, path = '../staking-handler' }
  23. pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
  24. [features]
  25. default = ['std']
  26. runtime-benchmarks = ['frame-benchmarking', 'membership']
  27. std = [
  28. 'codec/std',
  29. 'sp-std/std',
  30. 'frame-support/std',
  31. 'sp-runtime/std',
  32. 'frame-system/std',
  33. 'common/std',
  34. 'sp-arithmetic/std'
  35. ]