[package]
edition = "2021"
name = "u-nesting"
version = "0.1.0"
authors = ["iyulab"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Domain-agnostic 2D/3D spatial optimization engine - nesting and bin packing"
readme = "README.md"
keywords = [
"nesting",
"bin-packing",
"optimization",
"geometry",
"spatial",
]
categories = [
"algorithms",
"mathematics",
]
license = "MIT"
repository = "https://github.com/iyulab/U-Nesting"
[features]
d2 = ["dep:u-nesting-d2"]
d3 = ["dep:u-nesting-d3"]
default = [
"d2",
"d3",
]
serde = [
"u-nesting-core/serde",
"u-nesting-d2?/serde",
"u-nesting-d3?/serde",
]
[lib]
name = "u_nesting"
path = "src/lib.rs"
[dependencies.u-nesting-core]
version = "0.1.0"
[dependencies.u-nesting-d2]
version = "0.1.0"
optional = true
[dependencies.u-nesting-d3]
version = "0.1.0"
optional = true