xyzvec 0.1.13

Statically allocated fixed-size vectors for working in 2 and 3 dimensions
Documentation
[package]
name = "xyzvec"
version = "0.1.13"
edition = "2021"
repository = "https://github.com/schism-pl/xyzvec"
homepage = "https://github.com/schism-pl/xyzvec"
license = "MIT"
readme = "README.md"
description = "Statically allocated fixed-size vectors for working in 2 and 3 dimensions"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
cordic = ["dep:cordic"]

[dependencies]
cordic = { version = "0.1.5", optional = true }
fmt = "0.1.0"
fixed = "1.25.1" # TODO: can probably be optional
serde = { version = "1.0", optional = true, features = ["derive"] }

[dev-dependencies]
approx = "0.5.1"