| 1 | [package] |
| 2 | name = "condtype" |
| 3 | version = "1.3.0" |
| 4 | edition = "2021" |
| 5 | authors = ["Nikolai Vazquez" ] |
| 6 | license = "MIT OR Apache-2.0" |
| 7 | description = "Choose types at compile-time via boolean constants." |
| 8 | repository = "https://github.com/nvzqz/condtype" |
| 9 | homepage = "https://github.com/nvzqz/condtype" |
| 10 | documentation = "https://docs.rs/condtype" |
| 11 | categories = ["no-std" , "rust-patterns" ] |
| 12 | keywords = ["boolean" , "condition" , "const" , "depend" , "type" ] |
| 13 | readme = "README.md" |
| 14 | |
| 15 | # Const generics ordered before type generics. |
| 16 | rust-version = "1.59.0" |
| 17 | |
| 18 | [dev-dependencies] |
| 19 | libc = "0.2.141" |
| 20 | cfg-if = "1" |
| 21 | |