Files
face-detector/bbox/Cargo.toml
uttarayan21 4b4d23d1d4 feat(bbox): add bounding box implementation with serialization
Add initial implementation of the `BBox` struct in the `bbox` module,
including basic operations and serialization/deserialization support
with Serde.
2025-08-22 15:27:47 +05:30

14 lines
252 B
TOML

[package]
name = "bbox"
version.workspace = true
edition.workspace = true
[dependencies]
ndarray.workspace = true
num = "0.4.3"
serde = { workspace = true, features = ["derive"], optional = true }
[features]
serde = ["dep:serde"]
default = ["serde"]