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.
This commit is contained in:
13
bbox/Cargo.toml
Normal file
13
bbox/Cargo.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
[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"]
|
||||
Reference in New Issue
Block a user