[]
= "Genius-Self-study"
= ["Peile"]
= "0.1.0"
= "2024"
= "A Rust Practice"
= "MIT"
= "peile.wu.1990@gmail.com"
[]
# The opt-level parameter determines the degree of optimization Rust performs on the code when compiling.
# The value range is 0~3. The higher the optimization level, the more time it takes.
[]
# To shorten compilation time during development, set this to 1 so that no additional parameters are added when running cargo build,
# and some optimizations will be made during compilation (but not as much as in release mode).
= 1
# When releasing the final product, spend more time compiling the program, because it only needs to be compiled once when releasing,
# and this time the compilation must be in-depth to ensure performance.
[]
= 3