[package]
authors = ["Andre Bogus <bogusandre@gmail.de>", "Joshua Landau <joshua@landau.ws>"]
description = "count occurrences of a given byte, or the number of UTF-8 code points, in a byte slice, fast"
name = "bytecount"
version = "0.3.0"
license = "Apache-2.0/MIT"
repository = "https://github.com/llogiq/bytecount"
categories = ["algorithms", "no-std"]
[badges]
travis-ci = { repository = "llogiq/bytecount" }
appveyor = { repository = "llogiq/bytecount" }
[lib]
bench = false
[features]
avx-accel = ["simd-accel"]
simd-accel = ["simd"]
[dependencies]
simd = { version = "0.2.0", optional = true }
[dev-dependencies]
quickcheck = "0.6"
rand = "0.4"
bencher = "0.1.4"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false