[package] name = "hello_maiwe" version = "0.1.0" edition = "2021" authors = ["huhao "] description = "A fun game where you guess what number the computer has chosen." license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] [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