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