Skip to content

Commit

Permalink
Merge pull request #5 from danlehmann/3-support-bitenum-with-bool
Browse files Browse the repository at this point in the history
Support bitenum with bool
  • Loading branch information
danlehmann authored Dec 16, 2022
2 parents 4396299 + 1d4723b commit c2b06a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arbitrary-int"
version = "1.2.1"
version = "1.2.2"
edition = "2021"
authors = ["Daniel Lehmann <[email protected]>"]
description = "Modern and lightweight implementation of u2, u3, u4, ..., u127."
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#![cfg_attr(not(feature = "std"), no_std)]

use core::fmt::{Debug, Display, Formatter};
#[cfg(feature = "num-traits")]
use core::num::Wrapping;
use core::ops::{
Add, AddAssign, BitAnd, BitAndAssign, BitOr, BitOrAssign, BitXor, BitXorAssign, Not, Shl,
Expand Down

0 comments on commit c2b06a5

Please sign in to comment.