[package]
edition = "2021"
name = "packer-3d"
version = "0.3.0"
authors = ["R. Besson"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Packing algorithm for 3D container packing which optimizes for width, height, length, or all three."
readme = "README.md"
keywords = [
"bin",
"box",
"packer",
]
license = "CC-BY-NC-SA-4.0"
repository = "https://github.com/R-Besson/n-dimensional-strip-packing"
[lib]
name = "packer_3d"
path = "src/lib.rs"
[dependencies.fnv]
version = "1.0.7"
[profile.dev]
debug = 2
strip = false
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"