# 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 = "fast_arrays" version = "0.1.23" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Can be used to perform vectorized calculations on arbitrarily sized 1D and 2D arrays with AVX-512 acceleration." readme = "README.md" license = "Apache-2.0" repository = "https://github.com/PhilWun/fast-arrays" [profile.test] [lib] name = "fast_arrays" path = "src/lib.rs" [[bin]] name = "addition_benchmark" path = "src/bin/addition_benchmark.rs" [[bin]] name = "prng_benchmark" path = "src/bin/prng_benchmark.rs" [[example]] name = "serde_example" path = "examples/serde_example.rs" [[test]] name = "one_input" path = "tests/one_input.rs" [[test]] name = "basic" path = "tests/basic.rs" [[test]] name = "two_inputs" path = "tests/two_inputs.rs" [[test]] name = "three_inputs" path = "tests/three_inputs.rs" [[test]] name = "comparisons" path = "tests/comparisons.rs" [[test]] name = "reductions" path = "tests/reductions.rs" [[test]] name = "matrix" path = "tests/matrix.rs" [[test]] name = "mask" path = "tests/mask.rs" [[test]] name = "repeating" path = "tests/repeating.rs" [dependencies.rand] version = "0.8.5" features = ["small_rng"] [dependencies.rand_chacha] version = "0.3.1" [dependencies.serde] version = "1.0" features = ["derive"] [dev-dependencies.rstest] version = "0.18.2" [dev-dependencies.serde_json] version = "1.0"