Add initial implementation of the `BBox` struct in the `bbox` module, including basic operations and serialization/deserialization support with Serde.
14 lines
252 B
TOML
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"]
|