[package] name = "ortho_vec_derive" description = "Derive orthogonal vector structure for better CPU cache usage" version = "0.1.0" edition = "2021" authors = ["Yonatan Linik "] readme = "../README.md" repository = "https://github.com/yonatan-linik/ortho-vec-derive" license = "MIT" keywords = ["derive", "macro", "struct", "vec", "performance"] categories = ["performance"] [features] default = [] [dependencies] ortho_vec_derive_impl = { version = "0.1.0", path = "../ortho_vec_derive_impl" } ortho_vec_derive_macro = { version = "0.1.0", path = "../ortho_vec_derive_macro" } [dev-dependencies] criterion = {version = "0.4", features = ["html_reports"]} rand = "0.8.5" [[bench]] name = "bench_ortho_vec" harness = false