[go: up one dir, main page]

blake2b_simd 0.4.0

a pure Rust BLAKE2b implementation with dynamic SIMD
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: rust
os:
  - linux
  - osx
  - windows
rust:
  - stable
  - beta
  - nightly
script:
  # With std.
  - cargo test -vv --all-features
  # Without std.
  - cargo test -vv --no-default-features
  # Test the b2sum sub-crate.
  - (cd b2sum && cargo test -vv)