# 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 = "ferrix" version = "0.1.0" authors = ["Angus Stewart "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A simple matrix library for Rust" readme = "README.md" keywords = [ "vector", "matrix", "linear-algebra", "math", ] categories = ["mathematics"] license = "MIT" repository = "https://github.com/siliconlad/ferrix" [lib] name = "ferrix" path = "src/lib.rs" [[example]] name = "donut" path = "examples/donut.rs" [[test]] name = "test_add" path = "tests/test_add.rs" [[test]] name = "test_add_assign" path = "tests/test_add_assign.rs" [[test]] name = "test_div" path = "tests/test_div.rs" [[test]] name = "test_div_assign" path = "tests/test_div_assign.rs" [[test]] name = "test_dot" path = "tests/test_dot.rs" [[test]] name = "test_matmul" path = "tests/test_matmul.rs" [[test]] name = "test_matrix" path = "tests/test_matrix.rs" [[test]] name = "test_matrix_transpose_view" path = "tests/test_matrix_transpose_view.rs" [[test]] name = "test_matrix_transpose_view_mut" path = "tests/test_matrix_transpose_view_mut.rs" [[test]] name = "test_matrix_view" path = "tests/test_matrix_view.rs" [[test]] name = "test_matrix_view_mut" path = "tests/test_matrix_view_mut.rs" [[test]] name = "test_mul" path = "tests/test_mul.rs" [[test]] name = "test_mul_assign" path = "tests/test_mul_assign.rs" [[test]] name = "test_row_vector" path = "tests/test_row_vector.rs" [[test]] name = "test_row_vector_view" path = "tests/test_row_vector_view.rs" [[test]] name = "test_row_vector_view_mut" path = "tests/test_row_vector_view_mut.rs" [[test]] name = "test_sub" path = "tests/test_sub.rs" [[test]] name = "test_sub_assign" path = "tests/test_sub_assign.rs" [[test]] name = "test_vector" path = "tests/test_vector.rs" [[test]] name = "test_vector_view" path = "tests/test_vector_view.rs" [[test]] name = "test_vector_view_mut" path = "tests/test_vector_view_mut.rs" [[bench]] name = "add_benchmark" path = "benches/add_benchmark.rs" harness = false [[bench]] name = "div_benchmark" path = "benches/div_benchmark.rs" harness = false [[bench]] name = "dot_benchmark" path = "benches/dot_benchmark.rs" harness = false [[bench]] name = "mul_benchmark" path = "benches/mul_benchmark.rs" harness = false [[bench]] name = "sub_benchmark" path = "benches/sub_benchmark.rs" harness = false [dependencies.num-traits] version = "0.2.19" [dependencies.rand] version = "0.8.5" [dev-dependencies.criterion] version = "0.5.1"