# 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" rust-version = "1.65.0" name = "microgemm" version = "0.3.1" authors = ["cospectrum"] build = false exclude = [ ".github/*", "tests/comparison.rs", "Makefile.toml", ] autobins = false autoexamples = false autotests = false autobenches = false description = """ General matrix multiplication with custom configuration in Rust. Supports no_std and no_alloc environments. """ readme = "README.md" keywords = [ "gemm", "matrix", "linear-algebra", "math", ] categories = [ "science", "mathematics", "wasm", "no-std", "no-std::no-alloc", ] license = "MIT OR Apache-2.0" repository = "https://github.com/cospectrum/microgemm" [profile.dev] opt-level = 1 [lib] name = "microgemm" path = "src/lib.rs" [[example]] name = "gemm_f16" path = "examples/gemm_f16.rs" [[example]] name = "no_alloc" path = "examples/no_alloc.rs" [[test]] name = "neon" path = "tests/neon.rs" [[test]] name = "readme" path = "tests/readme.rs" [[bench]] name = "gemm_f32" path = "benches/gemm_f32.rs" harness = false [dependencies.generic-array] version = "1.0.0" default-features = false [dependencies.num-traits] version = "0.2.17" default-features = false [dev-dependencies.allocator-api2] version = "0.2.18" features = ["alloc"] default-features = false [dev-dependencies.approx] version = "0.5.1" [dev-dependencies.criterion] version = "0.5.1" default-features = false [dev-dependencies.faer-core] version = "0.16.0" default-features = false [dev-dependencies.half] version = "2" features = ["num-traits"] [dev-dependencies.matrixmultiply] version = "0.3.8" default-features = false [dev-dependencies.proptest] version = "1.5.0"