reciprocal 0.1.2

Baseline implementation of integer division by constants
Documentation
[package]
name = "reciprocal"
version = "0.1.2"
authors = ["Paul Khuong <pvk@pvk.ca>"]
description = "Baseline implementation of integer division by constants"
edition = "2018"
license = "MIT"
repository = "https://github.com/pkhuong/reciprocal"
keywords = ["division", "div-by-mul", "precomputation"]
categories = ["algorithms", "caching"]

[features]
# Enable core::intrinsics::unlikely with the nightly feature.
nightly = []

[profile.bench]
opt-level = 3

[dependencies]

[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
strength_reduce = "0.2.3"
fastdivide = "0.3.0"
rand = "0.8"
rand_chacha = "0.3"

[[bench]]
name = "div_throughput"
harness = false

[[bench]]
name = "div_latency"
harness = false

[[bench]]
name = "div_throughput_variable"
harness = false