Cargo.toml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. [package]
  2. name = "joystream-node-runtime"
  3. version = "0.9.0"
  4. authors = ["Parity Technologies <admin@parity.io>"]
  5. [dependencies]
  6. rustc-hex = "1.0"
  7. hex-literal = "0.1.0"
  8. serde = { version = "1.0", default-features = false }
  9. serde_derive = { version = "1.0", optional = true }
  10. safe-mix = { version = "1.0", default-features = false }
  11. parity-codec = "2.0"
  12. parity-codec-derive = "2.0"
  13. sr-std = { git = "https://github.com/paritytech/substrate" }
  14. sr-io = { git = "https://github.com/paritytech/substrate" }
  15. srml-support = { git = "https://github.com/paritytech/substrate" }
  16. substrate-primitives = { git = "https://github.com/paritytech/substrate" }
  17. substrate-keyring = { git = "https://github.com/paritytech/substrate" }
  18. srml-balances = { git = "https://github.com/paritytech/substrate" }
  19. srml-consensus = { git = "https://github.com/paritytech/substrate" }
  20. srml-aura = { git = "https://github.com/paritytech/substrate" }
  21. srml-executive = { git = "https://github.com/paritytech/substrate" }
  22. srml-indices = { git = "https://github.com/paritytech/substrate" }
  23. sr-primitives = { git = "https://github.com/paritytech/substrate" }
  24. srml-system = { git = "https://github.com/paritytech/substrate" }
  25. srml-timestamp = { git = "https://github.com/paritytech/substrate" }
  26. srml-sudo = { git = "https://github.com/paritytech/substrate" }
  27. substrate-client = { git = "https://github.com/paritytech/substrate", optional = true }
  28. sr-version = { git = "https://github.com/paritytech/substrate" }
  29. substrate-consensus-aura-primitives = { git = "https://github.com/paritytech/substrate" }
  30. [features]
  31. default = ["std"]
  32. std = [
  33. "parity-codec/std",
  34. "substrate-primitives/std",
  35. "substrate-client/std",
  36. "sr-std/std",
  37. "sr-io/std",
  38. "srml-support/std",
  39. "srml-balances/std",
  40. "srml-executive/std",
  41. "srml-aura/std",
  42. "srml-indices/std",
  43. "sr-primitives/std",
  44. "srml-system/std",
  45. "srml-timestamp/std",
  46. "srml-sudo/std",
  47. "sr-version/std",
  48. "serde_derive",
  49. "serde/std",
  50. "safe-mix/std",
  51. "substrate-client",
  52. "substrate-consensus-aura-primitives/std",
  53. ]