[dependencies.biodivine-lib-bdd]
version = "0.5"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.rust_decimal]
features = ["serde"]
version = "1.33"
[dependencies.thiserror]
version = "1.0"
[dependencies.utf8proj-core]
version = "0.9.1"
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.utf8proj-parser]
version = "0.9.1"
[lib]
name = "utf8proj_solver"
path = "src/lib.rs"
[lints.clippy]
assign_op_pattern = "allow"
assigning_clones = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
clone_on_copy = "allow"
cloned_instead_of_copied = "allow"
collapsible_str_replace = "allow"
collection_is_never_read = "allow"
comparison_chain = "allow"
default_constructed_unit_structs = "allow"
derivable_impls = "allow"
derive_partial_eq_without_eq = "allow"
doc_markdown = "allow"
field_reassign_with_default = "allow"
float_cmp = "allow"
fn_params_excessive_bools = "allow"
format_push_string = "allow"
if_not_else = "allow"
if_same_then_else = "allow"
ignored_unit_patterns = "allow"
implicit_clone = "allow"
inefficient_to_string = "allow"
inherent_to_string = "allow"
items_after_statements = "allow"
manual_div_ceil = "allow"
manual_let_else = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
match_wildcard_for_single_variants = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
needless_borrows_for_generic_args = "allow"
needless_continue = "allow"
needless_lifetimes = "allow"
needless_pass_by_value = "allow"
needless_raw_string_hashes = "allow"
only_used_in_recursion = "allow"
option_if_let_else = "allow"
redundant_clone = "allow"
redundant_closure_for_method_calls = "allow"
redundant_else = "allow"
redundant_guards = "allow"
regex_creation_in_loops = "allow"
return_self_not_must_use = "allow"
self_only_used_in_recursion = "allow"
semicolon_if_nothing_returned = "allow"
significant_drop_tightening = "allow"
similar_names = "allow"
single_char_pattern = "allow"
single_match = "allow"
single_match_else = "allow"
struct_excessive_bools = "allow"
suboptimal_flops = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
trivially_copy_pass_by_ref = "allow"
uninlined_format_args = "allow"
unnecessary_cast = "allow"
unnecessary_map_or = "allow"
unnecessary_wraps = "allow"
unreadable_literal = "allow"
unused_self = "allow"
use_self = "allow"
used_underscore_binding = "allow"
useless_format = "allow"
wildcard_imports = "allow"
wildcard_in_or_patterns = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
dead_code = "allow"
unsafe_code = "forbid"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Scheduling solver for utf8proj (CPM, resource leveling)"
edition = "2021"
keywords = ["scheduling", "cpm", "solver"]
license = "MIT OR Apache-2.0"
name = "utf8proj-solver"
readme = false
repository = "https://github.com/alanbld/utf8proj"
rust-version = "1.75"
version = "0.9.1"
[[test]]
name = "calendar_diagnostics"
path = "tests/calendar_diagnostics.rs"
[[test]]
name = "constraint_wiring"
path = "tests/constraint_wiring.rs"
[[test]]
name = "container_dependency_diagnostics"
path = "tests/container_dependency_diagnostics.rs"
[[test]]
name = "cpm_correctness"
path = "tests/cpm_correctness.rs"
[[test]]
name = "earned_value"
path = "tests/earned_value.rs"
[[test]]
name = "hierarchical_scheduling"
path = "tests/hierarchical_scheduling.rs"
[[test]]
name = "progress_aware_cpm"
path = "tests/progress_aware_cpm.rs"
[[test]]
name = "progress_tracking"
path = "tests/progress_tracking.rs"
[[test]]
name = "resource_leveling"
path = "tests/resource_leveling.rs"
[[test]]
name = "variance_reporting"
path = "tests/variance_reporting.rs"