Cargo.toml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = 'substrate-versioned-store-permissions-module'
  3. version = '1.0.0'
  4. authors = ['Mokhtar Naamani <mokhtar.naamani@gmail.com>']
  5. edition = '2018'
  6. [dependencies]
  7. hex-literal = '0.1.0'
  8. serde = { version = '1.0', optional = true }
  9. serde_derive = { version = '1.0', optional = true }
  10. codec = { package = 'parity-scale-codec', version = '1.0.0', default-features = false, features = ['derive'] }
  11. rstd = { package = 'sr-std', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'}
  12. runtime-primitives = { package = 'sr-primitives', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'}
  13. srml-support = { package = 'srml-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'}
  14. srml-support-procedural = { package = 'srml-support-procedural', git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'}
  15. system = { package = 'srml-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'}
  16. timestamp = { package = 'srml-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'}
  17. runtime-io = { package = 'sr-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'}
  18. #https://users.rust-lang.org/t/failure-derive-compilation-error/39062
  19. quote = '=1.0.2'
  20. [dependencies.versioned-store]
  21. default_features = false
  22. package ='substrate-versioned-store'
  23. git = 'https://github.com/joystream/substrate-versioned-store-module'
  24. tag = "v1.0.0"
  25. [dev-dependencies]
  26. runtime-io = { package = 'sr-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'}
  27. primitives = { package = 'substrate-primitives', git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'}
  28. [features]
  29. default = ['std']
  30. std = [
  31. 'serde',
  32. 'serde_derive',
  33. 'codec/std',
  34. 'rstd/std',
  35. 'runtime-io/std',
  36. 'runtime-primitives/std',
  37. 'srml-support/std',
  38. 'system/std',
  39. 'timestamp/std',
  40. 'versioned-store/std',
  41. ]