cargo-features = ["profile-rustflags"]
[[bin]]
name = "pert"
path = "src/main.rs"
[dependencies.rand]
version = "0.8"
[lib]
name = "pert"
path = "src/lib.rs"
[package]
authors = ["Asterio Gonzalez <asterio.gonzalez@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "A PERT algoritm for solving task planning with resource overassignation."
documentation = "https://docs.rs/pert"
edition = "2021"
homepage = "https://github.com/asteriogonzalez"
license = "MIT OR Apache-2.0"
name = "pert"
readme = "README.md"
repository = "https://github.com/asteriogonzalez/pert"
version = "1.0.1"
[profile.dev]
codegen-units = 256
debug = 2
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
panic = "unwind"
rpath = false
rustflags = ["-A", "dead_code"]
split-debuginfo = "..."
strip = "none"
[profile.release]
codegen-units = 16
debug = 0
debug-assertions = false
incremental = false
lto = false
opt-level = 3
overflow-checks = false
panic = "unwind"
rpath = false
split-debuginfo = "..."
strip = "none"
[[test]]
name = "test_task"
path = "tests/test_task.rs"