Ruben De Smet
Ruben De Smet
Let's leave both issues open, then!
> error[E0554]: `#![feature]` may not be used on the stable release channel Did you try running it on a nightly compiler? `cargo +nighty test` ?
Sounds like you'll need to figure out which exact version of nightly you need. Did you try with `nightly-2019-07-31`, as [suggested by the `rust-toolchain` file](https://github.com/dalek-cryptography/bulletproofs/blob/main/rust-toolchain)?
I pushed some changes to the `dalek-neon` branch. @Tarinn will try to get both branches in sync. In that branch, there are some updates that (hopefully) doesn't make this slower...
Documenting the `image` flag and crate in the README and main lib doc would be useful indeed! Patch is welcome.
I see a couple of different cases here: 1. Stuff goes wrong (different statuses depending on what went wrong) 2. Image was already up-to-date 3. Image has been updated and...
> @rubdos Distinguishing between (2) and (3) by non-zero exit code would be detrimental for CI systems that interpret non-zero codes as failure. If (2) or (3) were to exit...
We have the following code in a fork: ```rust /// Create a [Choice] in const context. #[cfg(feature = "core_hint_black_box")] #[inline] pub const fn from_u8_const(input: u8) -> Self { debug_assert!((input ==...