Cargo.toml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [package]
  2. name = "joystream-node"
  3. version = "0.9.0"
  4. authors = ["Parity Technologies <admin@parity.io>"]
  5. build = "build.rs"
  6. [[bin]]
  7. name = "joystream-node"
  8. path = "src/main.rs"
  9. [dependencies]
  10. error-chain = "0.12"
  11. futures = "0.1"
  12. ctrlc = { version = "3.0", features = ["termination"] }
  13. log = "0.4"
  14. tokio = "0.1.7"
  15. exit-future = "0.1"
  16. parking_lot = "0.4"
  17. hex-literal = "0.1"
  18. slog = "^2"
  19. parity-codec = { version = "2.1" }
  20. trie-root = { git = "https://github.com/paritytech/trie" }
  21. sr-io = { git = "https://github.com/paritytech/substrate" }
  22. sr-primitives = { git = "https://github.com/paritytech/substrate" }
  23. substrate-cli = { git = "https://github.com/paritytech/substrate" }
  24. substrate-primitives = { git = "https://github.com/paritytech/substrate" }
  25. substrate-executor = { git = "https://github.com/paritytech/substrate" }
  26. substrate-service = { git = "https://github.com/paritytech/substrate" }
  27. substrate-transaction-pool = { git = "https://github.com/paritytech/substrate" }
  28. substrate-network = { git = "https://github.com/paritytech/substrate" }
  29. substrate-consensus-aura = { git = "https://github.com/paritytech/substrate" }
  30. substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false }
  31. substrate-finality-grandpa = { git = "https://github.com/paritytech/substrate" }
  32. substrate-basic-authorship = { git = "https://github.com/paritytech/substrate" }
  33. joystream-node-runtime = { path = "runtime" }
  34. node-executor = { git = "https://github.com/paritytech/substrate" }
  35. structopt = "0.2.13"
  36. [build-dependencies]
  37. vergen = "2"
  38. [workspace]
  39. members = [ "runtime" ]
  40. exclude = [ "runtime/wasm" ]
  41. [profile.release]
  42. # Substrate runtime requires unwinding.
  43. panic = "unwind"