Cargo.toml 489 B

1234567891011121314151617181920212223242526
  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. darkfi-sdk = { path = "../../src/sdk" }
  10. darkfi = { path = "../../", features = ["serial"]}
  11. pasta_curves = "0.4.0"
  12. [dev-dependencies]
  13. darkfi = { path = "../../", features = ["wasm-runtime"] }
  14. incrementalmerkletree = "0.3.0"
  15. lazy-init = "0.5.1"
  16. simplelog = "0.12.0"
  17. sled = "0.34.7"
  18. [profile.release]
  19. lto = true
  20. codegen-units = 1
  21. overflow-checks = true