Skip to content

Commit

Permalink
hexlit: Bumped version to 0.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
inspier committed Nov 25, 2020
1 parent 8f691c9 commit 667319b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hexlit"
version = "0.3.0"
version = "0.3.1"
authors = ["inspier <[email protected]>"]
edition = "2018"
documentation = "https://docs.rs/hexlit"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A zero-allocation no_std-compatible zero-cost way to convert hex-strings to byte

To add to your Cargo.toml:
```toml
hexlit = "0.3.0"
hexlit = "0.3.1"
```

## Example
Expand Down
1 change: 1 addition & 0 deletions rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
max_width = 80
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ macro_rules! require_even_number_digits {
};
}

pub type Even<T> = <<T as HexStringLength>::Marker as LengthIsEvenNumberOfHexDigits>::Check;
pub type Even<T> =
<<T as HexStringLength>::Marker as LengthIsEvenNumberOfHexDigits>::Check;

pub enum IsEvenNumberofDigits {}
pub enum IsOddNumberofDigits {}
Expand Down

0 comments on commit 667319b

Please sign in to comment.