bspa 0.1.1

Beam search packing algorithm
Documentation
# 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.

[package]
edition = "2024"
name = "bspa"
version = "0.1.1"
authors = ["rosingrind"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Beam search packing algorithm"
readme = false
keywords = [
    "packing",
    "algorithm",
]
categories = [
    "algorithms",
    "compression",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rosingrind/nursery/tree/main/bspa"

[features]
default = []
rayon = [
    "dep:rayon",
    "beamsrch/rayon",
    "image/rayon",
]
test-utils = []

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

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

[[bench]]
name = "atlas"
path = "benches/atlas.rs"
harness = false

[[bench]]
name = "param"
path = "benches/param.rs"
harness = false

[dependencies.beamsrch]
version = "0.1.0"

[dependencies.itertools]
version = "0.14.0"
default-features = false

[dependencies.likely_stable]
version = "0.1.3"

[dependencies.rayon]
version = "1.11.0"
optional = true

[dependencies.rustc-hash]
version = "2.1.1"

[dev-dependencies.bencher]
version = "0.1.5"

[dev-dependencies.image]
version = "0.25.9"

[dev-dependencies.rand]
version = "0.9.2"