aprender-tsp 0.2.0

Local TSP optimization with personalized .apr models
Documentation
[[bench]]
harness = false
name = "tsp_benchmarks"
path = "benches/tsp_benchmarks.rs"

[[bin]]
name = "aprender-tsp"
path = "src/main.rs"

[dependencies.aprender]
version = "0.24"

[dependencies.clap]
features = ["derive"]
version = "4"

[dependencies.crc32fast]
version = "1.4"

[dependencies.rand]
version = "0.8"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.predicates]
version = "3"

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.tempfile]
version = "3"

[[example]]
name = "tsp_algorithm_comparison"
path = "examples/tsp_algorithm_comparison.rs"

[[example]]
name = "tsp_benchmark"
path = "examples/tsp_benchmark.rs"

[[example]]
name = "tsp_model_persistence"
path = "examples/tsp_model_persistence.rs"

[lib]
name = "aprender_tsp"
path = "src/lib.rs"

[lints.clippy]
assigning_clones = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
checked_conversions = "warn"
cloned_instead_of_copied = "allow"
derivable_impls = "allow"
doc_markdown = "allow"
explicit_deref_methods = "warn"
explicit_iter_loop = "warn"
float_cmp = "allow"
implicit_clone = "warn"
inconsistent_struct_constructor = "warn"
inefficient_to_string = "warn"
items_after_statements = "allow"
large_stack_arrays = "allow"
manual_ok_or = "warn"
many_single_char_names = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_fields_in_debug = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_range_loop = "allow"
redundant_closure_for_method_calls = "warn"
return_self_not_must_use = "allow"
similar_names = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
type_complexity = "allow"
uninlined_format_args = "allow"
unnested_or_patterns = "warn"
unreadable_literal = "allow"
unused_self = "allow"
used_underscore_binding = "warn"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "allow"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"
unsafe_op_in_unsafe_fn = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
unused_qualifications = "warn"

[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1

[package]
authors = ["paiml"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "command-line-utilities", "science"]
description = "Local TSP optimization with personalized .apr models"
edition = "2021"
keywords = ["tsp", "optimization", "metaheuristics", "solver", "routing"]
license = "MIT"
name = "aprender-tsp"
readme = "README.md"
repository = "https://github.com/paiml/aprender"
version = "0.2.0"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "property_tests"
path = "tests/property_tests.rs"