Cargo.toml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [package]
  2. name = 'pallet-content'
  3. version = '3.2.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 = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  8. sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  9. frame-support = { package = 'frame-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  10. frame-system = { package = 'frame-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  11. sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  12. codec = { package = 'parity-scale-codec', version = '1.3.4', default-features = false, features = ['derive'] }
  13. serde = {version = '1.0.101', features = ['derive'], optional = true}
  14. common = { package = 'pallet-common', default-features = false, path = '../common'}
  15. storage = { package = 'pallet-storage', default-features = false, path = '../storage'}
  16. membership = { package = 'pallet-membership', default-features = false, path = '../membership'}
  17. balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  18. [dev-dependencies]
  19. sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  20. sp-core = { package = 'sp-core', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  21. pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  22. randomness-collective-flip = { package = 'pallet-randomness-collective-flip', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '2cd20966cc09b059817c3ebe12fc130cdd850d62'}
  23. [features]
  24. default = ['std']
  25. std = [
  26. 'sp-std/std',
  27. 'sp-runtime/std',
  28. 'frame-support/std',
  29. 'frame-system/std',
  30. 'sp-arithmetic/std',
  31. 'codec/std',
  32. 'serde',
  33. 'common/std',
  34. 'storage/std',
  35. 'balances/std',
  36. 'membership/std',
  37. ]