Cargo.toml 482 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "bishop"
  3. version = "0.1.0"
  4. authors = ["Nicolas Winkler <nicolas.winkler@gmx.ch>"]
  5. [dependencies]
  6. log = "*"
  7. simplelog = "*"
  8. rand = "*"
  9. [build-dependencies]
  10. rand = "*"
  11. [build]
  12. rustflags = ["-C","target-cpu=native"]
  13. [profile.release]
  14. opt-level = 3
  15. lto = true
  16. strip = "debuginfo"
  17. # Optimize the build script;
  18. # As we generate magic tables in it, it needs to be optimized
  19. [profile.dev.build-override]
  20. opt-level = 3
  21. [profile.release.build-override]
  22. opt-level = 3