1[package]
2name = "muldiv"
3version = "1.0.1"
4authors = ["Sebastian Dröge <sebastian@centricular.com>"]
5repository = "https://github.com/sdroege/rust-muldiv"
6license = "MIT"
7keywords = ["integer", "arithmetic", "numerics", "no_std"]
8categories = ["algorithms"]
9description = """
10Provides a trait for numeric types to perform combined multiplication and
11division with overflow protection
12"""
13readme = "README.md"
14include = [
15 "src/lib.rs",
16 "LICENSE",
17 "README.md",
18 "Cargo.toml",
19 "CHANGELOG.md",
20]
21edition = "2018"
22
23[dependencies]
24
25[dev-dependencies]
26quickcheck = "1"
27