Files
face-detector/bounding-box/Cargo.toml
uttarayan21 2d2309837f
Some checks failed
build / checks-matrix (push) Successful in 23m6s
build / codecov (push) Failing after 19m30s
docs / docs (push) Failing after 28m54s
build / checks-build (push) Has been cancelled
feat: Added stuff
2025-08-13 18:08:03 +05:30

19 lines
337 B
TOML

[package]
name = "bounding-box"
version = "0.1.0"
edition = "2024"
[dependencies]
color = "0.3.1"
itertools = "0.14.0"
nalgebra = { workspace = true }
ndarray = { version = "0.16.1", optional = true }
num = "0.4.3"
ordered-float = "5.0.0"
simba = "0.9.0"
thiserror = "2.0.12"
[features]
ndarray = ["dep:ndarray"]
default = ["ndarray"]