Cargo.toml 347 B

1234567891011121314151617181920212223
  1. [profile.release]
  2. lto = true
  3. panic = 'abort'
  4. [workspace]
  5. members = []
  6. [lib]
  7. crate-type = ['cdylib']
  8. [features]
  9. default = []
  10. std = ['joystream-node-runtime/std']
  11. [dependencies.joystream-node-runtime]
  12. default-features = false
  13. path = '..'
  14. [package]
  15. authors = ['Joystream']
  16. edition = '2018'
  17. name = 'joystream-node-runtime-wasm'
  18. version = '6.0.0'