[package]
edition = "2024"
name = "hullabaloo"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Backend-agnostic geometry construction utilities."
readme = "README.md"
license = "AGPL-3.0-only"
repository = "https://github.com/khoek/howzat"
[features]
default = ["simd"]
serde = [
"hullabaloo-core/serde",
"hullabaloo-geom/serde",
]
simd = [
"hullabaloo-core/simd",
"hullabaloo-geom/simd",
]
[lib]
name = "hullabaloo"
path = "src/lib.rs"
[dependencies.hullabaloo-core]
version = "0.3.2"
default-features = false
[dependencies.hullabaloo-geom]
version = "0.3.2"
default-features = false