cargo-features = ["profile-rustflags"] [package] name = "pert" version = "1.0.1" edition = "2021" license = "MIT OR Apache-2.0" authors = ["Asterio Gonzalez "] description = "A PERT algoritm for solving task planning with resource overassignation." repository = "https://github.com/asteriogonzalez/pert" # homepage = "https://your-crate-homepage.com" homepage = "https://github.com/asteriogonzalez" documentation = "https://docs.rs/pert" readme = "README.md" [profile.dev] opt-level = 0 debug = true split-debuginfo = '...' # Platform-specific. strip = "none" debug-assertions = true overflow-checks = true lto = false panic = 'unwind' incremental = true codegen-units = 256 rpath = false rustflags = ["-A", "dead_code"] [profile.release] opt-level = 3 debug = false split-debuginfo = '...' # Platform-specific. strip = "none" debug-assertions = false overflow-checks = false lto = false panic = 'unwind' incremental = false codegen-units = 16 rpath = false [dependencies] # cargo-edit = "0.13.0" rand="0.8"