Skip to content

Commit

Permalink
Merge pull request #17 from EspressoSystems/update-deps
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
jbearer authored Oct 6, 2022
2 parents 14ed57e + 1de701e commit 1744c3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ license = "MIT"
[dependencies]
arbitrary = { version="1.0", features=["derive"] }
ark-serialize = { version = "0.3.0", features = ["derive"] }
bitvec = "=0.20.1"
funty = "=1.1.0"
bitvec = "1.0"
funty = "2.0"
generic-array = { version = "0.14.4", features = ["serde"] }
hex = "0.4.3"
serde = { version = "1.0", features = ["derive"] }
sha3 = "^0.9"
sha3 = "^0.10"

[dev-dependencies]
quickcheck = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl<T: ?Sized + Committable> core::hash::Hash for Commitment<T> {
}

impl<T: ?Sized + Committable> Commitment<T> {
pub fn into_bits(self) -> BitVec<bitvec::order::Lsb0, u8> {
pub fn into_bits(self) -> BitVec<u8, bitvec::order::Lsb0> {
BitVec::try_from(self.0.to_vec()).unwrap()
}
}
Expand Down

0 comments on commit 1744c3d

Please sign in to comment.