Cargo.toml 550 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "smart-contract"
  3. version = "0.3.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. darkfi = { path = "../../", features = ["serial"]}
  12. [dependencies.pasta_curves]
  13. git = "https://github.com/darkrenaissance/pasta_curves"
  14. branch = "serialization-support"
  15. features = ["borsh"]
  16. [dev-dependencies]
  17. darkfi = { path = "../../", features = ["wasm-runtime"] }
  18. simplelog = "0.12.0"
  19. [profile.release]
  20. lto = true
  21. codegen-units = 1
  22. overflow-checks = true