# 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 = "arr-rs" version = "0.6.0" authors = ["Paweł Walus "] include = [ "Cargo.toml", "Cargo.lock", "README.md", "LICENSE-APACHE", "LICENSE-MIT", "/src", "/tests", "/benches", ] description = "arr-rs - rust arrays library" homepage = "https://github.com/pw-order-of-devs" readme = "README.md" keywords = [ "arrays", "collections", ] categories = [ "arrays", "collections", "data-structures", "science", ] license = "MIT OR Apache-2.0" repository = "https://github.com/pw-order-of-devs/arr-rs" [package.metadata.docs.rs] features = [ "numeric", "alphanumeric", "boolean", "linalg", "math", "macros", ] rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "arr_rs" path = "src/lib.rs" [[bench]] name = "benches" path = "benches/main.rs" harness = false [dependencies.rand] version = "0.8" [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [dev-dependencies.rstest] version = "0.18" [features] alphanumeric = [] boolean = ["numeric"] default = [ "numeric", "alphanumeric", "boolean", "linalg", "math", "macros", ] linalg = ["numeric"] macros = ["numeric"] math = ["numeric"] numeric = []