We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
derive
bits
Using the following does not compile:
ff = { version = "0.11.0", default-features = false, features = ["derive", "alloc"] }
because derive depends on bitvec which is only included with the bits feature enabled.
bitvec
Compile error, and relevant code snippet:
<...>.cargo/registry/src/github.com-1ecc6299db9ec823/ff-0.11.0/src/lib.rs:269:14 | 269 | pub use {bitvec, byteorder, rand_core, subtle}; | ^^^^^^ no external crate `bitvec`
ff-0.11.0/src/lib.rs: /// Functions and re-exported crates used by the [`PrimeField`] derive macro. #[cfg(feature = "derive")] #[cfg_attr(docsrs, doc(cfg(feature = "derive")))] pub mod derive { pub use crate::arith_impl::*; pub use {bitvec, byteorder, rand_core, subtle}; }
The text was updated successfully, but these errors were encountered:
On further investigation, it appears ff_derive actually depends on bitvec without listing it as a dependency.
ff_derive
Sorry, something went wrong.
Fixing this properly blocks on #78, due to the need for weak dependency features.
Successfully merging a pull request may close this issue.
Using the following does not compile:
because
derive
depends onbitvec
which is only included with thebits
feature enabled.Compile error, and relevant code snippet:
The text was updated successfully, but these errors were encountered: