# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. cargo-features = ["profile-rustflags"] [package] edition = "2021" name = "pert" version = "1.0.1" authors = ["Asterio Gonzalez "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A PERT algoritm for solving task planning with resource overassignation." homepage = "https://github.com/asteriogonzalez" documentation = "https://docs.rs/pert" readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/asteriogonzalez/pert" [profile.dev] opt-level = 0 lto = false codegen-units = 256 debug = 2 split-debuginfo = "..." debug-assertions = true rpath = false panic = "unwind" overflow-checks = true incremental = true strip = "none" rustflags = [ "-A", "dead_code", ] [profile.release] opt-level = 3 lto = false codegen-units = 16 debug = 0 split-debuginfo = "..." debug-assertions = false rpath = false panic = "unwind" overflow-checks = false incremental = false strip = "none" [lib] name = "pert" path = "src/lib.rs" [[bin]] name = "pert" path = "src/main.rs" [[test]] name = "test_task" path = "tests/test_task.rs" [dependencies.rand] version = "0.8"