| 1 | [package] |
| 2 | name = "option-operations" |
| 3 | version = "0.5.0" |
| 4 | authors = ["François Laignel <fengalin@free.fr>" ] |
| 5 | categories = ["rust-patterns" , "no-std" , "mathematics" ] |
| 6 | description = "Traits and auto-implementations to improve arithmetic operations usability when dealing with `Option`s." |
| 7 | documentation = "https://docs.rs/option-operations" |
| 8 | keywords = ["option" , "arithmetic" , "operations" , "ord" , "cmp" ] |
| 9 | license = "MIT/Apache-2.0" |
| 10 | readme = "README.md" |
| 11 | repository = "https://github.com/fengalin/option-operations" |
| 12 | edition = "2018" |
| 13 | rust-version = "1.53" |
| 14 | |
| 15 | [features] |
| 16 | default = ["std" ] |
| 17 | |
| 18 | # Provide impls for common standard library types like |
| 19 | # std::time::Instant and impl std traits like Display & Error. |
| 20 | # Requires a dependency on the Rust standard library. |
| 21 | std = [] |
| 22 | |
| 23 | [dependencies] |
| 24 | paste = "1.0.6" |
| 25 | |