Cargo.toml 478 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "smart-contract"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [workspace]
  6. [lib]
  7. crate-type = ["cdylib", "rlib"]
  8. [dependencies]
  9. borsh = "0.9.3"
  10. drk-sdk = { path = "../../src/sdk" }
  11. [dependencies.pasta_curves]
  12. git = "https://github.com/darkrenaissance/pasta_curves"
  13. branch = "serialization-support"
  14. features = ["borsh"]
  15. [dev-dependencies]
  16. darkfi = { path = "../../", features = ["wasm-runtime"] }
  17. [profile.release]
  18. lto = true
  19. codegen-units = 1
  20. overflow-checks = true