Skip to content

Commit

Permalink
Add additional milestones and keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
merehap committed Oct 23, 2024
1 parent fdbe635 commit 8ed77b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readme = "README.md"
documentation = "https://docs.rs/splitbits"
repository = "https://github.com/merehap/splitbits.git"
description = "Concise bit field extraction"
keywords = ["bitfields", "bits", "splitbits"]
keywords = ["bitfields", "bitpacking", "bits", "macro", "splitbits"]
categories = ["rust-patterns", "parser-implementations"]

[lib]
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ Find thorough documentation of this crate and its many macro variants [here], in
- Allow non-standard template lengths.
- Verify that splitbits can be used in no_std environments. It seems that the package itself doesn't need to be no_std, just the generated code.
- Add support for different endianness for inputs and outputs?
- Achieve feature parity with https://github.com/porglezomp/bitmatch

### Performance
- Add tests that verify that the intended code for each macro is what is generated.
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
// * Add file-level config for overflow and min.
// * Always use overflow=corrupt for combinebits! and replacebits! if the input variable size
// exactly matches the field slot size.
// * Add new macro for single field extraction, disable splitbits_named! for that case.

//! [![github]](https://github.com/merehap/splitbits)
//!
Expand Down

0 comments on commit 8ed77b2

Please sign in to comment.