tictactoe/Cargo.toml
shimun b29f0d4062
All checks were successful
continuous-integration/drone/push Build is passing
impl rand game
2019-11-11 00:22:25 +01:00

16 lines
462 B
TOML

[package]
name = "tictactoe"
version = "0.1.0"
authors = ["shimun <shimun@shimun.net>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = 'z' # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = 'abort' # Abort on panic
[dependencies]
rand = "0.7.2"