Skip to content

Commit

Permalink
chore: upgrade to bitvec = 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Joonas Koivunen committed Apr 28, 2022
1 parent 110a3bd commit 25a4a16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repository = "https://github.com/zkcrypto/ff"
edition = "2018"

[dependencies]
bitvec = { version = "0.22", default-features = false, optional = true }
bitvec = { version = "1", default-features = false, optional = true }
byteorder = { version = "1", default-features = false, optional = true }
ff_derive = { version = "0.11", path = "ff_derive", optional = true }
rand_core = { version = "0.6", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ use subtle::{Choice, ConditionallySelectable, ConstantTimeEq, CtOption};
/// Bit representation of a field element.
#[cfg(feature = "bits")]
#[cfg_attr(docsrs, doc(cfg(feature = "bits")))]
pub type FieldBits<V> = BitArray<Lsb0, V>;
pub type FieldBits<V> = BitArray<V, Lsb0>;

/// This trait represents an element of a field.
pub trait Field:
Expand Down

0 comments on commit 25a4a16

Please sign in to comment.