# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "point-nd" version = "0.5.0" authors = ["taennan taennan@zohomail.com"] exclude = [".idea", ".gitignore", "CHANGELOG.md"] description = "A simple and flexible no-std struct to model points on axes of any dimensions" keywords = ["point", "geometry", "multidimensional", "coordinate"] categories = ["data-structures", "graphics", "no-std"] license = "MIT OR Apache-2.0" repository = "https://github.com/taennan/point-nd/tree/main" resolver = "2" [dependencies.arrayvec] version = "0.7.2" optional = true default-features = false [features] appliers = ["arrayvec"] conv_methods = ["x", "y", "z", "w"] default = ["conv_methods", "appliers"] full = ["default", "var-dims"] var-dims = ["arrayvec"] w = [] x = [] y = [] z = []