Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compact-encoding"
version = "1.1.0"
version = "2.0.0"
license = "MIT OR Apache-2.0"
description = "A series of compact encoding schemes for building small and fast parsers and serializers"
documentation = "https://docs.rs/compact-encoding"
Expand Down
2 changes: 1 addition & 1 deletion src/fixedwidth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub trait FixedWidthEncoding {
Self: Sized;

/// Get a uint in a form that encodes to a fixed width
fn as_fixed_width(&self) -> FixedWidthUint<Self> {
fn as_fixed_width(&self) -> FixedWidthUint<'_, Self> {
FixedWidthUint(self)
}
}
Expand Down
Loading