123456789101112131415161718192021222324252627282930 |
- [package]
- name = "bishop"
- version = "0.1.0"
- authors = ["Nicolas Winkler <nicolas.winkler@gmx.ch>"]
- [dependencies]
- log = "*"
- simplelog = "*"
- rand = "*"
- [build-dependencies]
- rand = "*"
- [build]
- rustflags = ["-C","target-cpu=native"]
- [profile.release]
- opt-level = 3
- lto = true
- strip = "debuginfo"
- # Optimize the build script;
- # As we generate magic tables in it, it needs to be optimized
- [profile.dev.build-override]
- opt-level = 3
- [profile.release.build-override]
- opt-level = 3
|