| 1 | [package] |
| 2 | name = "bit_field" |
| 3 | version = "0.10.2" |
| 4 | authors = ["Philipp Oppermann <dev@phil-opp.com>" ] |
| 5 | license = "Apache-2.0/MIT" |
| 6 | |
| 7 | description = "Simple bit field trait providing get_bit, get_bits, set_bit, and set_bits methods for Rust's integral types." |
| 8 | keywords = ["no_std" ] |
| 9 | repository = "https://github.com/phil-opp/rust-bit-field" |
| 10 | documentation = "https://docs.rs/bit_field" |
| 11 | |
| 12 | [dependencies] |
| 13 | |
| 14 | [package.metadata.release] |
| 15 | dev-version = false |
| 16 | pre-release-replacements = [ |
| 17 | { file = "Changelog.md" , search = "## Unreleased" , replace = "## Unreleased\n\n# {{version}} – {{date}}" , exactly = 1 }, |
| 18 | ] |
| 19 | pre-release-commit-message = "Release version {{version}}" |
| 20 | |