Lines Matching +full:rust +full:- +full:embedded
1 # crc32fast [![Build Status][travis-img]][travis] [![Crates.io][crates-img]][crates] [![Documentati…
3 [travis-img]: https://travis-ci.com/srijs/rust-crc32fast.svg?branch=master
4 [travis]: https://travis-ci.com/srijs/rust-crc32fast
5 [crates-img]: https://img.shields.io/crates/v/crc32fast.svg
7 [docs-img]: https://docs.rs/crc32fast/badge.svg
10 _Fast, SIMD-accelerated CRC32 (IEEE) checksum computation_
16 For simple use-cases, you can call the `hash` convenience function to
19 ```rust
25 For use-cases that require more flexibility or performance, for example when
28 ```rust
40 - A fast baseline implementation which processes up to 16 bytes per iteration
41 - An optimized implementation for modern `x86` using `sse` and `pclmulqdq` instructions
42 - An optimized implementation for `aarch64` using `crc32` instructions
48 | ----------------------------------- | ------- | --------- | ------- | ---- |
57 …b.com/rust-fuzz/afl.rs) with millions of iterations in both `debug` and `release` build settings. …
67 …rary supports being built without the Rust `std` library, which is useful for low-level use-cases …
82 - Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
83 http://www.apache.org/licenses/LICENSE-2.0)
84 - MIT license ([LICENSE-MIT](LICENSE-MIT) or
92 for inclusion in this project by you, as defined in the Apache-2.0 license,