[package]
edition = "2024"
name = "pack3d"
version = "0.2.1"
authors = ["Chen QingYu <chen_qingyu@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "pack3d"
description = "A 3D bin packing application written in Rust."
readme = "readme.md"
keywords = [
"3d",
"bin",
"packing",
]
license = "MIT"
repository = "https://github.com/chen-qingyu/pack3d"
[lib]
name = "pack3d"
path = "src/lib.rs"
[[bin]]
name = "pack3d"
path = "src/main.rs"
[[test]]
name = "report"
path = "tests/report.rs"
[[test]]
name = "test_constraint"
path = "tests/test_constraint.rs"
[[test]]
name = "test_output"
path = "tests/test_output.rs"
[dependencies.colog]
version = "1.4"
[dependencies.jsonschema]
version = "0.45"
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.peak_alloc]
version = "0.3"
[dev-dependencies.rstest]
version = "0.26"
[dev-dependencies.sysinfo]
version = "0.38"