[package] name = "more_cargo_co" version = "0.1.1" authors = ["jmaralc "] edition = "2018" description = "A set of examples while learning Rust. Don't use it for real purpose" license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rand = "0.8.0" termion="1" [profile.dev] opt-level = 0 debug = true split-debuginfo = '...' # Platform-specific. debug-assertions = true overflow-checks = true lto = false panic = 'unwind' incremental = true codegen-units = 256 rpath = false [profile.release] opt-level = 3 debug = false split-debuginfo = '...' # Platform-specific. debug-assertions = false overflow-checks = false lto = false panic = 'unwind' incremental = false codegen-units = 16 rpath = false [profile.test] opt-level = 0 debug = 2 split-debuginfo = '...' # Platform-specific. debug-assertions = true overflow-checks = true lto = false panic = 'unwind' # This setting is always ignored. incremental = true codegen-units = 256 rpath = false [profile.bench] opt-level = 3 debug = false split-debuginfo = '...' # Platform-specific. debug-assertions = false overflow-checks = false lto = false panic = 'unwind' # This setting is always ignored. incremental = false codegen-units = 16 rpath = false [profile.dev.package."rand:0.8.3"] opt-level = 3