Cargo.toml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. [package]
  2. name = 'substrate-forum-data-migration'
  3. version = '1.1.0'
  4. authors = ['Bedeho Mender <bedeho.mender@protonmail.com>']
  5. edition = '2018'
  6. [dependencies]
  7. hex-literal = '0.1.0'
  8. serde = { version = '1.0.101', optional = true}
  9. serde_derive = { version = '1.0.101', optional = true }
  10. rstd = { package = 'sr-std', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'}
  11. runtime-primitives = { package = 'sr-primitives', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'}
  12. srml-support = { package = 'srml-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'}
  13. srml-support-procedural = { package = 'srml-support-procedural', git = 'https://github.com/paritytech/substrate.git', rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'}
  14. frame_system = { package = 'srml-frame_system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'}
  15. balances = { package = 'srml-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'}
  16. codec = { package = 'parity-scale-codec', version = '1.0.0', default-features = false, features = ['derive'] }
  17. [dependencies.timestamp]
  18. default_features = false
  19. git = 'https://github.com/paritytech/substrate.git'
  20. package = 'srml-timestamp'
  21. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  22. [dependencies.runtime-io]
  23. default_features = false
  24. git = 'https://github.com/paritytech/substrate.git'
  25. package = 'sr-io'
  26. rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'
  27. [dependencies.old-forum]
  28. default_features = false
  29. git = 'https://github.com/juniuszhou/substrate-forum-module'
  30. package = 'substrate-forum-module'
  31. rev = '2c664a211c129fa96b3b4923f73cf850d8177006'
  32. [dependencies.new-forum]
  33. default_features = false
  34. package = 'substrate-forum-module'
  35. path = '../forum-module'
  36. [dev-dependencies]
  37. runtime-io = { package = 'sr-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'}
  38. primitives = { package = 'substrate-primitives', git = 'https://github.com/paritytech/substrate.git', rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3'}
  39. criterion = "0.2.11"
  40. [features]
  41. default = ['std']
  42. std = [
  43. 'serde',
  44. 'serde_derive',
  45. 'codec/std',
  46. 'rstd/std',
  47. 'runtime-io/std',
  48. 'runtime-primitives/std',
  49. 'srml-support/std',
  50. 'frame_system/std',
  51. 'balances/std',
  52. 'timestamp/std',
  53. 'old-forum/std',
  54. 'new-forum/std'
  55. ]
  56. [[bench]]
  57. name = "data-migration"
  58. harness = false