Compiling libc v0.1.3
Compiling log v0.2.5
Compiling gcc v0.3.1
Compiling rustc-serialize v0.3.4
Compiling rand v0.2.0
Compiling time v0.1.20
Compiling rust-crypto v0.2.23 (file:///home/enix/code/rust-crypto)
src/aes_gcm.rs:9:5: 9:35 warning: use of unstable library feature 'core': needs review
src/aes_gcm.rs:9 use std::slice::bytes::copy_memory;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/aes_gcm.rs:9:35: 9:35 help: add #![feature(core)] to the crate attributes to silence this warning
src/aes_gcm.rs:36:9: 36:20 warning: use of unstable library feature 'core': needs review
src/aes_gcm.rs:36 copy_memory(&mut iv, nonce);
^~~~~~~~~~~
src/aes_gcm.rs:36:20: 36:20 help: add #![feature(core)] to the crate attributes to silence this warning
src/aessafe.rs:129:5: 129:26 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/aessafe.rs:129 use std::iter::range_step;
^~~~~~~~~~~~~~~~~~~~~
src/aessafe.rs:129:26: 129:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/aessafe.rs:348:30: 348:45 warning: use of unstable library feature 'core': pending integer conventions
src/aessafe.rs:348 f2 ^ f4 ^ f8 ^ (f2 ^ f9).rotate_right(8) ^ (f4 ^ f9).rotate_right(16) ^ f9.rotate_right(24)
^~~~~~~~~~~~~~~
src/aessafe.rs:348:45: 348:45 help: add #![feature(core)] to the crate attributes to silence this warning
src/aessafe.rs:348:58: 348:74 warning: use of unstable library feature 'core': pending integer conventions
src/aessafe.rs:348 f2 ^ f4 ^ f8 ^ (f2 ^ f9).rotate_right(8) ^ (f4 ^ f9).rotate_right(16) ^ f9.rotate_right(24)
^~~~~~~~~~~~~~~~
src/aessafe.rs:348:74: 348:74 help: add #![feature(core)] to the crate attributes to silence this warning
src/aessafe.rs:348:80: 348:96 warning: use of unstable library feature 'core': pending integer conventions
src/aessafe.rs:348 f2 ^ f4 ^ f8 ^ (f2 ^ f9).rotate_right(8) ^ (f4 ^ f9).rotate_right(16) ^ f9.rotate_right(24)
^~~~~~~~~~~~~~~~
src/aessafe.rs:348:96: 348:96 help: add #![feature(core)] to the crate attributes to silence this warning
src/aessafe.rs:378:14: 378:24 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/aessafe.rs:378 for i in range_step(0, key.len(), 4) {
^~~~~~~~~~
src/aessafe.rs:378:24: 378:24 help: add #![feature(core)] to the crate attributes to silence this warning
src/aessafe.rs:391:32: 391:47 warning: use of unstable library feature 'core': pending integer conventions
src/aessafe.rs:391 tmp = sub_word(tmp.rotate_right(8)) ^ RCON[(i / key_words) - 1];
^~~~~~~~~~~~~~~
src/aessafe.rs:391:47: 391:47 help: add #![feature(core)] to the crate attributes to silence this warning
src/bcrypt.rs:31:14: 31:24 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/bcrypt.rs:31 for i in range_step(0, 6, 2) {
^~~~~~~~~~
src/bcrypt.rs:31:24: 31:24 help: add #![feature(core)] to the crate attributes to silence this warning
src/bcrypt_pbkdf.rs:7:5: 7:26 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/bcrypt_pbkdf.rs:7 use std::iter::range_step;
^~~~~~~~~~~~~~~~~~~~~
src/bcrypt_pbkdf.rs:7:26: 7:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/bcrypt_pbkdf.rs:25:14: 25:24 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/bcrypt_pbkdf.rs:25 for i in range_step(0, 8, 2) {
^~~~~~~~~~
src/bcrypt_pbkdf.rs:25:24: 25:24 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:11:5: 11:41 warning: use of unstable library feature 'core'
src/blake2b.rs:11 use std::intrinsics::volatile_set_memory;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:11:41: 11:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:125:9: 125:20 warning: use of unstable library feature 'core': needs review
src/blake2b.rs:125 copy_memory(&mut b.key, key);
^~~~~~~~~~~
src/blake2b.rs:125:20: 125:20 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:187:9: 187:20 warning: use of unstable library feature 'core': needs review
src/blake2b.rs:187 copy_memory(&mut block, &self.key[..self.key_length as usize]);
^~~~~~~~~~~
src/blake2b.rs:187:20: 187:20 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:190:13: 190:32 warning: use of unstable library feature 'core'
src/blake2b.rs:190 volatile_set_memory(block.as_mut_ptr(), 0, block.len());
^~~~~~~~~~~~~~~~~~~
src/blake2b.rs:190:32: 190:32 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:30: 72:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:72:65: 72:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:72:13: 72:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:72 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+0]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:72:29: 72:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:73:20: 73:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:73 $d = ($d ^ $a).rotate_right(32);
^~~~~~~~~~~~~~~~
src/blake2b.rs:73:36: 73:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:74:13: 74:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:74 $c = $c.wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:74:29: 74:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:75:20: 75:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:75 $b = ($b ^ $c).rotate_right(24);
^~~~~~~~~~~~~~~~
src/blake2b.rs:75:36: 75:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:30: 76:65 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blake2b.rs:76:65: 76:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:76:13: 76:29 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:76 $a = $a.wrapping_add($b).wrapping_add($m[SIGMA[$r][2*$i+1]]);
^~~~~~~~~~~~~~~~
src/blake2b.rs:76:29: 76:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:77:20: 77:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:77 $d = ($d ^ $a).rotate_right(16);
^~~~~~~~~~~~~~~~
src/blake2b.rs:77:36: 77:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:78:14: 78:30 warning: use of unstable library feature 'core': may be removed or relocated
src/blake2b.rs:78 $c = $c .wrapping_add($d);
^~~~~~~~~~~~~~~~
src/blake2b.rs:78:30: 78:30 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:79:20: 79:36 warning: use of unstable library feature 'core': pending integer conventions
src/blake2b.rs:79 $b = ($b ^ $c).rotate_right(63);
^~~~~~~~~~~~~~~~
src/blake2b.rs:79:36: 79:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:259:17: 259:28 warning: use of unstable library feature 'core': needs review
src/blake2b.rs:259 copy_memory( &mut self.buf[left..], &input[0..fill] ); // Fill buffer
^~~~~~~~~~~
src/blake2b.rs:259:28: 259:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:267:17: 267:28 warning: use of unstable library feature 'core': needs review
src/blake2b.rs:267 copy_memory(first_half, second_half);
^~~~~~~~~~~
src/blake2b.rs:267:28: 267:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:272:17: 272:28 warning: use of unstable library feature 'core': needs review
src/blake2b.rs:272 copy_memory(&mut self.buf[left..], input);
^~~~~~~~~~~
src/blake2b.rs:272:28: 272:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:290:17: 290:28 warning: use of unstable library feature 'core': needs review
src/blake2b.rs:290 copy_memory(first_half, second_half);
^~~~~~~~~~~
src/blake2b.rs:290:28: 290:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/blake2b.rs:307:9: 307:20 warning: use of unstable library feature 'core': needs review
src/blake2b.rs:307 copy_memory(out, &self.buf[0..outlen]);
^~~~~~~~~~~
src/blake2b.rs:307:20: 307:20 help: add #![feature(core)] to the crate attributes to silence this warning
src/blockmodes.rs:96:9: 96:34 warning: use of unstable library feature 'core': needs review
src/blockmodes.rs:96 slice::bytes::copy_memory(
^~~~~~~~~~~~~~~~~~~~~~~~~
src/blockmodes.rs:96:34: 96:34 help: add #![feature(core)] to the crate attributes to silence this warning
src/blockmodes.rs:102:9: 102:34 warning: use of unstable library feature 'core': needs review
src/blockmodes.rs:102 slice::bytes::copy_memory(
^~~~~~~~~~~~~~~~~~~~~~~~~
src/blockmodes.rs:102:34: 102:34 help: add #![feature(core)] to the crate attributes to silence this warning
src/blockmodes.rs:415:9: 415:34 warning: use of unstable library feature 'core': needs review
src/blockmodes.rs:415 slice::bytes::copy_memory(self.in_hist.as_mut_slice(), in_hist);
^~~~~~~~~~~~~~~~~~~~~~~~~
src/blockmodes.rs:415:34: 415:34 help: add #![feature(core)] to the crate attributes to silence this warning
src/blockmodes.rs:416:9: 416:34 warning: use of unstable library feature 'core': needs review
src/blockmodes.rs:416 slice::bytes::copy_memory(self.out_hist.as_mut_slice(), out_hist);
^~~~~~~~~~~~~~~~~~~~~~~~~
src/blockmodes.rs:416:34: 416:34 help: add #![feature(core)] to the crate attributes to silence this warning
src/blockmodes.rs:667:16: 667:37 warning: use of unstable library feature 'core': may be removed or relocated
src/blockmodes.rs:667 *i = i.wrapping_add(ammount);
^~~~~~~~~~~~~~~~~~~~~
src/blockmodes.rs:667:37: 667:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/blockmodes.rs:693:9: 693:34 warning: use of unstable library feature 'core': needs review
src/blockmodes.rs:693 slice::bytes::copy_memory(self.ctr.as_mut_slice(), ctr);
^~~~~~~~~~~~~~~~~~~~~~~~~
src/blockmodes.rs:693:34: 693:34 help: add #![feature(core)] to the crate attributes to silence this warning
src/blockmodes.rs:747:9: 747:34 warning: use of unstable library feature 'core': needs review
src/blockmodes.rs:747 slice::bytes::copy_memory(ctr_i, in_ctr);
^~~~~~~~~~~~~~~~~~~~~~~~~
src/blockmodes.rs:747:34: 747:34 help: add #![feature(core)] to the crate attributes to silence this warning
src/blowfish.rs:226:18: 226:28 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/blowfish.rs:226 for i in range_step(0, 18, 2) {
^~~~~~~~~~
src/blowfish.rs:226:28: 226:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/blowfish.rs:234:22: 234:32 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/blowfish.rs:234 for j in range_step(0, 256, 2) {
^~~~~~~~~~
src/blowfish.rs:234:32: 234:32 help: add #![feature(core)] to the crate attributes to silence this warning
src/blowfish.rs:253:18: 253:28 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/blowfish.rs:253 for i in range_step(0, 18, 2) {
^~~~~~~~~~
src/blowfish.rs:253:28: 253:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/blowfish.rs:261:22: 261:32 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/blowfish.rs:261 for j in range_step(0, 256, 4) {
^~~~~~~~~~
src/blowfish.rs:261:32: 261:32 help: add #![feature(core)] to the crate attributes to silence this warning
src/blowfish.rs:278:136: 278:180 warning: use of unstable library feature 'core': may be removed or relocated
src/blowfish.rs:278 ((self.s[0][(x >> 24) as usize].wrapping_add(self.s[1][((x >> 16) & 0xff) as usize])) ^ self.s[2][((x >> 8) & 0xff) as usize]).wrapping_add(self.s[3][(x & 0xff) as usize])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blowfish.rs:278:180: 278:180 help: add #![feature(core)] to the crate attributes to silence this warning
src/blowfish.rs:278:41: 278:93 warning: use of unstable library feature 'core': may be removed or relocated
src/blowfish.rs:278 ((self.s[0][(x >> 24) as usize].wrapping_add(self.s[1][((x >> 16) & 0xff) as usize])) ^ self.s[2][((x >> 8) & 0xff) as usize]).wrapping_add(self.s[3][(x & 0xff) as usize])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/blowfish.rs:278:93: 278:93 help: add #![feature(core)] to the crate attributes to silence this warning
src/blowfish.rs:283:18: 283:28 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/blowfish.rs:283 for i in range_step(0, 16, 2) {
^~~~~~~~~~
src/blowfish.rs:283:28: 283:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/buffer.rs:40:9: 40:34 warning: use of unstable library feature 'core': needs review
src/buffer.rs:40 slice::bytes::copy_memory(output.take_next(count), self.take_next(count));
^~~~~~~~~~~~~~~~~~~~~~~~~
src/buffer.rs:40:34: 40:34 help: add #![feature(core)] to the crate attributes to silence this warning
src/cryptoutil.rs:86:18: 86:23 warning: use of unstable library feature 'core': will be replaced by range notation
src/cryptoutil.rs:86 for _ in range(0, input.len()) {
^~~~~
src/cryptoutil.rs:86:23: 86:23 help: add #![feature(core)] to the crate attributes to silence this warning
src/cryptoutil.rs:264:24: 264:33 warning: use of unstable library feature 'core': unsure about its place in the world
src/cryptoutil.rs:264 if new_high_bits > Int::zero() {
^~~~~~~~~
src/cryptoutil.rs:264:33: 264:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/cryptoutil.rs:287:33: 287:42 warning: use of unstable library feature 'core': unsure about its place in the world
src/cryptoutil.rs:287 if new_high_bits == Int::zero() {
^~~~~~~~~
src/cryptoutil.rs:287:42: 287:42 help: add #![feature(core)] to the crate attributes to silence this warning
src/cryptoutil.rs:299:26: 299:34 warning: use of unstable library feature 'core': unsure about its place in the world
src/cryptoutil.rs:299 let one: T = Int::one();
^~~~~~~~
src/cryptoutil.rs:299:34: 299:34 help: add #![feature(core)] to the crate attributes to silence this warning
src/cryptoutil.rs:312:43: 312:69 warning: use of unstable library feature 'core': may be removed or relocated
src/cryptoutil.rs:312 Some(y) => return (y, low.wrapping_add(new_low_bits)),
^~~~~~~~~~~~~~~~~~~~~~~~~~
src/cryptoutil.rs:312:69: 312:69 help: add #![feature(core)] to the crate attributes to silence this warning
src/cryptoutil.rs:370:25: 370:36 warning: use of unstable library feature 'core': needs review
src/cryptoutil.rs:370 copy_memory(
^~~~~~~~~~~
src/cryptoutil.rs:357:1: 435:4 note: in expansion of impl_fixed_buffer!
src/cryptoutil.rs:454:1: 454:39 note: expansion site
src/cryptoutil.rs:370:36: 370:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/cryptoutil.rs:357:1: 435:4 note: in expansion of impl_fixed_buffer!
src/cryptoutil.rs:454:1: 454:39 note: expansion site
src/cryptoutil.rs:377:21: 377:32 warning: use of unstable library feature 'core': needs review
src/cryptoutil.rs:377 copy_memory(
^~~~~~~~~~~
src/cryptoutil.rs:357:1: 435:4 note: in expansion of impl_fixed_buffer!
src/cryptoutil.rs:454:1: 454:39 note: expansion site
src/cryptoutil.rs:377:32: 377:32 help: add #![feature(core)] to the crate attributes to silence this warning
src/cryptoutil.rs:357:1: 435:4 note: in expansion of impl_fixed_buffer!
src/cryptoutil.rs:454:1: 454:39 note: expansion site
src/cryptoutil.rs:396:13: 396:24 warning: use of unstable library feature 'core': needs review
src/cryptoutil.rs:396 copy_memory(
^~~~~~~~~~~
src/cryptoutil.rs:357:1: 435:4 note: in expansion of impl_fixed_buffer!
src/cryptoutil.rs:454:1: 454:39 note: expansion site
src/cryptoutil.rs:396:24: 396:24 help: add #![feature(core)] to the crate attributes to silence this warning
src/cryptoutil.rs:357:1: 435:4 note: in expansion of impl_fixed_buffer!
src/cryptoutil.rs:454:1: 454:39 note: expansion site
src/cryptoutil.rs:408:52: 408:65 warning: use of unstable library feature 'core': needs review
src/cryptoutil.rs:408 &mut self.buffer[self.buffer_idx..idx].set_memory(0);
^~~~~~~~~~~~~
src/cryptoutil.rs:408:65: 408:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/cryptoutil.rs:370:25: 370:36 warning: use of unstable library feature 'core': needs review
src/cryptoutil.rs:370 copy_memory(
^~~~~~~~~~~
src/cryptoutil.rs:357:1: 435:4 note: in expansion of impl_fixed_buffer!
src/cryptoutil.rs:472:1: 472:41 note: expansion site
src/cryptoutil.rs:370:36: 370:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/cryptoutil.rs:357:1: 435:4 note: in expansion of impl_fixed_buffer!
src/cryptoutil.rs:472:1: 472:41 note: expansion site
src/cryptoutil.rs:377:21: 377:32 warning: use of unstable library feature 'core': needs review
src/cryptoutil.rs:377 copy_memory(
^~~~~~~~~~~
src/cryptoutil.rs:357:1: 435:4 note: in expansion of impl_fixed_buffer!
src/cryptoutil.rs:472:1: 472:41 note: expansion site
src/cryptoutil.rs:377:32: 377:32 help: add #![feature(core)] to the crate attributes to silence this warning
src/cryptoutil.rs:357:1: 435:4 note: in expansion of impl_fixed_buffer!
src/cryptoutil.rs:472:1: 472:41 note: expansion site
src/cryptoutil.rs:396:13: 396:24 warning: use of unstable library feature 'core': needs review
src/cryptoutil.rs:396 copy_memory(
^~~~~~~~~~~
src/cryptoutil.rs:357:1: 435:4 note: in expansion of impl_fixed_buffer!
src/cryptoutil.rs:472:1: 472:41 note: expansion site
src/cryptoutil.rs:396:24: 396:24 help: add #![feature(core)] to the crate attributes to silence this warning
src/cryptoutil.rs:357:1: 435:4 note: in expansion of impl_fixed_buffer!
src/cryptoutil.rs:472:1: 472:41 note: expansion site
src/cryptoutil.rs:408:52: 408:65 warning: use of unstable library feature 'core': needs review
src/cryptoutil.rs:408 &mut self.buffer[self.buffer_idx..idx].set_memory(0);
^~~~~~~~~~~~~
src/cryptoutil.rs:408:65: 408:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/curve25519.rs:4:5: 4:26 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/curve25519.rs:4 use std::iter::range_step;
^~~~~~~~~~~~~~~~~~~~~
src/curve25519.rs:4:26: 4:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/curve25519.rs:1024:27: 1024:37 warning: use of unstable library feature 'core': will be replaced by slice syntax
src/curve25519.rs:1024 !fixed_time_eq(bs.as_slice(), zero.as_slice())
^~~~~~~~~~
src/curve25519.rs:1024:37: 1024:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/curve25519.rs:1024:44: 1024:54 warning: use of unstable library feature 'core': will be replaced by slice syntax
src/curve25519.rs:1024 !fixed_time_eq(bs.as_slice(), zero.as_slice())
^~~~~~~~~~
src/curve25519.rs:1024:54: 1024:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/curve25519.rs:1401:11: 1401:26 warning: use of unstable library feature 'core': may be removed or relocated
src/curve25519.rs:1401 y = y.wrapping_sub(1); /* 4294967295: yes; 0..254: no */
^~~~~~~~~~~~~~~
src/curve25519.rs:1401:26: 1401:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/curve25519.rs:1483:14: 1483:24 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/curve25519.rs:1483 for i in range_step(1, 64, 2) {
^~~~~~~~~~
src/curve25519.rs:1483:24: 1483:24 help: add #![feature(core)] to the crate attributes to silence this warning
src/curve25519.rs:1494:14: 1494:24 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/curve25519.rs:1494 for i in range_step(0, 64, 2) {
^~~~~~~~~~
src/curve25519.rs:1494:24: 1494:24 help: add #![feature(core)] to the crate attributes to silence this warning
src/curve25519.rs:2161:24: 2161:34 warning: use of unstable library feature 'core': will be replaced by slice syntax
src/curve25519.rs:2161 curve25519(x, base.as_slice())
^~~~~~~~~~
src/curve25519.rs:2161:34: 2161:34 help: add #![feature(core)] to the crate attributes to silence this warning
src/ed25519.rs:5:5: 5:26 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/ed25519.rs:5 use std::iter::range_step;
^~~~~~~~~~~~~~~~~~~~~
src/ed25519.rs:5:26: 5:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/ed25519.rs:66:32: 66:42 warning: use of unstable library feature 'core': will be replaced by slice syntax
src/ed25519.rs:66 hasher.input(signature.as_slice());
^~~~~~~~~~
src/ed25519.rs:66:42: 66:42 help: add #![feature(core)] to the crate attributes to silence this warning
src/ed25519.rs:86:14: 86:24 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/ed25519.rs:86 for i in range_step(31, -1, -1) {
^~~~~~~~~~
src/ed25519.rs:86:24: 86:24 help: add #![feature(core)] to the crate attributes to silence this warning
src/ed25519.rs:119:50: 119:60 warning: use of unstable library feature 'core': will be replaced by slice syntax
src/ed25519.rs:119 let r = GeP2::double_scalarmult_vartime(hash.as_slice(), a, &signature[32..64]);
^~~~~~~~~~
src/ed25519.rs:119:60: 119:60 help: add #![feature(core)] to the crate attributes to silence this warning
src/ed25519.rs:122:26: 122:36 warning: use of unstable library feature 'core': will be replaced by slice syntax
src/ed25519.rs:122 fixed_time_eq(rcheck.as_slice(), &signature[0..32])
^~~~~~~~~~
src/ed25519.rs:122:36: 122:36 help: add #![feature(core)] to the crate attributes to silence this warning
src/fortuna.rs:47:5: 47:35 warning: use of unstable library feature 'core': needs review
src/fortuna.rs:47 use std::slice::bytes::copy_memory;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/fortuna.rs:47:35: 47:35 help: add #![feature(core)] to the crate attributes to silence this warning
src/fortuna.rs:91:39: 91:54 warning: use of unstable library feature 'core': may be removed or relocated
src/fortuna.rs:91 self.ctr[i] = self.ctr[i].wrapping_add(1);
^~~~~~~~~~~~~~~
src/fortuna.rs:91:54: 91:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/fortuna.rs:138:13: 138:24 warning: use of unstable library feature 'core': needs review
src/fortuna.rs:138 copy_memory(&mut out[(n * AES_BLOCK_SIZE)..], &buf[..rem]);
^~~~~~~~~~~
src/fortuna.rs:138:24: 138:24 help: add #![feature(core)] to the crate attributes to silence this warning
src/ghash.rs:20:5: 20:35 warning: use of unstable library feature 'core': needs review
src/ghash.rs:20 use std::slice::bytes::copy_memory;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/ghash.rs:20:35: 20:35 help: add #![feature(core)] to the crate attributes to silence this warning
src/ghash.rs:164:17: 164:28 warning: use of unstable library feature 'core': needs review
src/ghash.rs:164 copy_memory(&mut rest[rest_len..], data);
^~~~~~~~~~~
src/ghash.rs:164:28: 164:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/ghash.rs:170:13: 170:24 warning: use of unstable library feature 'core': needs review
src/ghash.rs:170 copy_memory(&mut rest[rest_len..], fill);
^~~~~~~~~~~
src/ghash.rs:170:24: 170:24 help: add #![feature(core)] to the crate attributes to silence this warning
src/ghash.rs:185:9: 185:20 warning: use of unstable library feature 'core': needs review
src/ghash.rs:185 copy_memory(&mut tmp, rest);
^~~~~~~~~~~
src/ghash.rs:185:20: 185:20 help: add #![feature(core)] to the crate attributes to silence this warning
src/ghash.rs:319:9: 319:20 warning: use of unstable library feature 'core': needs review
src/ghash.rs:319 copy_memory(output, &self.state.to_bytes());
^~~~~~~~~~~
src/ghash.rs:319:20: 319:20 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:40:18: 40:23 warning: use of unstable library feature 'core': will be replaced by range notation
src/hc128.rs:40 for i in range(0, 16) {
^~~~~
src/hc128.rs:40:23: 40:23 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:47:18: 47:23 warning: use of unstable library feature 'core': will be replaced by range notation
src/hc128.rs:47 for i in range(0, nonce.len() & 16) {
^~~~~
src/hc128.rs:47:23: 47:23 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:54:18: 54:23 warning: use of unstable library feature 'core': will be replaced by range notation
src/hc128.rs:54 for i in range(16, 1280) {
^~~~~
src/hc128.rs:54:23: 54:23 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:55:109: 55:131 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:55 w[i] = (f2(w[i - 2]).wrapping_add(w[i - 7]).wrapping_add(f1(w[i - 15])).wrapping_add(w[i - 16]).wrapping_add(i as u32)) as u32;
^~~~~~~~~~~~~~~~~~~~~~
src/hc128.rs:55:131: 55:131 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:55:85: 55:108 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:55 w[i] = (f2(w[i - 2]).wrapping_add(w[i - 7]).wrapping_add(f1(w[i - 15])).wrapping_add(w[i - 16]).wrapping_add(i as u32)) as u32;
^~~~~~~~~~~~~~~~~~~~~~~
src/hc128.rs:55:108: 55:108 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:55:57: 55:84 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:55 w[i] = (f2(w[i - 2]).wrapping_add(w[i - 7]).wrapping_add(f1(w[i - 15])).wrapping_add(w[i - 16]).wrapping_add(i as u32)) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~~~~
src/hc128.rs:55:84: 55:84 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:55:34: 55:56 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:55 w[i] = (f2(w[i - 2]).wrapping_add(w[i - 7]).wrapping_add(f1(w[i - 15])).wrapping_add(w[i - 16]).wrapping_add(i as u32)) as u32;
^~~~~~~~~~~~~~~~~~~~~~
src/hc128.rs:55:56: 55:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:64:18: 64:23 warning: use of unstable library feature 'core': will be replaced by range notation
src/hc128.rs:64 for i in range(0, 512) {
^~~~~
src/hc128.rs:64:23: 64:23 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:67:18: 67:23 warning: use of unstable library feature 'core': will be replaced by range notation
src/hc128.rs:67 for i in range(0, 512) {
^~~~~
src/hc128.rs:67:23: 67:23 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:78:33: 78:48 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:78 let dim_j3 : usize = (j.wrapping_sub(3)) & 0x1FF;
^~~~~~~~~~~~~~~
src/hc128.rs:78:48: 78:48 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:79:34: 79:50 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:79 let dim_j10 : usize = (j.wrapping_sub(10)) & 0x1FF;
^~~~~~~~~~~~~~~~
src/hc128.rs:79:50: 79:50 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:80:35: 80:52 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:80 let dim_j511 : usize = (j.wrapping_sub(511)) & 0x1FF;
^~~~~~~~~~~~~~~~~
src/hc128.rs:80:52: 80:52 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:81:34: 81:50 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:81 let dim_j12 : usize = (j.wrapping_sub(12)) & 0x1FF;
^~~~~~~~~~~~~~~~
src/hc128.rs:81:50: 81:50 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:86:117: 86:162 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:86 self.p[j] = self.p[j].wrapping_add(self.p[dim_j3].rotate_right(10) ^ self.p[dim_j511].rotate_right(23)).wrapping_add(self.p[dim_j10].rotate_right(8));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/hc128.rs:86:162: 86:162 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:86:35: 86:116 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:86 self.p[j] = self.p[j].wrapping_add(self.p[dim_j3].rotate_right(10) ^ self.p[dim_j511].rotate_right(23)).wrapping_add(self.p[dim_j10].rotate_right(8));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/hc128.rs:86:116: 86:116 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:86:63: 86:79 warning: use of unstable library feature 'core': pending integer conventions
src/hc128.rs:86 self.p[j] = self.p[j].wrapping_add(self.p[dim_j3].rotate_right(10) ^ self.p[dim_j511].rotate_right(23)).wrapping_add(self.p[dim_j10].rotate_right(8));
^~~~~~~~~~~~~~~~
src/hc128.rs:86:79: 86:79 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:86:99: 86:115 warning: use of unstable library feature 'core': pending integer conventions
src/hc128.rs:86 self.p[j] = self.p[j].wrapping_add(self.p[dim_j3].rotate_right(10) ^ self.p[dim_j511].rotate_right(23)).wrapping_add(self.p[dim_j10].rotate_right(8));
^~~~~~~~~~~~~~~~
src/hc128.rs:86:115: 86:115 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:86:146: 86:161 warning: use of unstable library feature 'core': pending integer conventions
src/hc128.rs:86 self.p[j] = self.p[j].wrapping_add(self.p[dim_j3].rotate_right(10) ^ self.p[dim_j511].rotate_right(23)).wrapping_add(self.p[dim_j10].rotate_right(8));
^~~~~~~~~~~~~~~
src/hc128.rs:86:161: 86:161 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:87:62: 87:133 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:87 ret = (self.q[(self.p[dim_j12] & 0xFF) as usize].wrapping_add(self.q[(((self.p[dim_j12] >> 16) & 0xFF) + 256) as usize])) ^ self.p[j];
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/hc128.rs:87:133: 87:133 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:89:115: 89:159 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:89 self.q[j] = self.q[j].wrapping_add(self.q[dim_j3].rotate_left(10) ^ self.q[dim_j511].rotate_left(23)).wrapping_add(self.q[dim_j10].rotate_left(8));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/hc128.rs:89:159: 89:159 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:89:35: 89:114 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:89 self.q[j] = self.q[j].wrapping_add(self.q[dim_j3].rotate_left(10) ^ self.q[dim_j511].rotate_left(23)).wrapping_add(self.q[dim_j10].rotate_left(8));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/hc128.rs:89:114: 89:114 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:89:63: 89:78 warning: use of unstable library feature 'core': pending integer conventions
src/hc128.rs:89 self.q[j] = self.q[j].wrapping_add(self.q[dim_j3].rotate_left(10) ^ self.q[dim_j511].rotate_left(23)).wrapping_add(self.q[dim_j10].rotate_left(8));
^~~~~~~~~~~~~~~
src/hc128.rs:89:78: 89:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:89:98: 89:113 warning: use of unstable library feature 'core': pending integer conventions
src/hc128.rs:89 self.q[j] = self.q[j].wrapping_add(self.q[dim_j3].rotate_left(10) ^ self.q[dim_j511].rotate_left(23)).wrapping_add(self.q[dim_j10].rotate_left(8));
^~~~~~~~~~~~~~~
src/hc128.rs:89:113: 89:113 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:89:144: 89:158 warning: use of unstable library feature 'core': pending integer conventions
src/hc128.rs:89 self.q[j] = self.q[j].wrapping_add(self.q[dim_j3].rotate_left(10) ^ self.q[dim_j511].rotate_left(23)).wrapping_add(self.q[dim_j10].rotate_left(8));
^~~~~~~~~~~~~~
src/hc128.rs:89:158: 89:158 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:90:62: 90:133 warning: use of unstable library feature 'core': may be removed or relocated
src/hc128.rs:90 ret = (self.p[(self.q[dim_j12] & 0xFF) as usize].wrapping_add(self.p[(((self.q[dim_j12] >> 16) & 0xFF) + 256) as usize])) ^ self.q[j];
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/hc128.rs:90:133: 90:133 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:110:23: 110:38 warning: use of unstable library feature 'core': pending integer conventions
src/hc128.rs:110 let ret : u32 = x.rotate_right(7) ^ x.rotate_right(18) ^ (x >> 3);
^~~~~~~~~~~~~~~
src/hc128.rs:110:38: 110:38 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:110:43: 110:59 warning: use of unstable library feature 'core': pending integer conventions
src/hc128.rs:110 let ret : u32 = x.rotate_right(7) ^ x.rotate_right(18) ^ (x >> 3);
^~~~~~~~~~~~~~~~
src/hc128.rs:110:59: 110:59 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:115:23: 115:39 warning: use of unstable library feature 'core': pending integer conventions
src/hc128.rs:115 let ret : u32 = x.rotate_right(17) ^ x.rotate_right(19) ^ (x >> 10);
^~~~~~~~~~~~~~~~
src/hc128.rs:115:39: 115:39 help: add #![feature(core)] to the crate attributes to silence this warning
src/hc128.rs:115:44: 115:60 warning: use of unstable library feature 'core': pending integer conventions
src/hc128.rs:115 let ret : u32 = x.rotate_right(17) ^ x.rotate_right(19) ^ (x >> 10);
^~~~~~~~~~~~~~~~
src/hc128.rs:115:60: 115:60 help: add #![feature(core)] to the crate attributes to silence this warning
src/hmac.rs:41:9: 41:34 warning: use of unstable library feature 'core': needs review
src/hmac.rs:41 slice::bytes::copy_memory(expanded_key.as_mut_slice(), key);
^~~~~~~~~~~~~~~~~~~~~~~~~
src/hmac.rs:41:34: 41:34 help: add #![feature(core)] to the crate attributes to silence this warning
src/hkdf.rs:12:5: 12:35 warning: use of unstable library feature 'core': needs review
src/hkdf.rs:12 use std::slice::bytes::copy_memory;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/hkdf.rs:12:35: 12:35 help: add #![feature(core)] to the crate attributes to silence this warning
src/hkdf.rs:66:9: 66:20 warning: use of unstable library feature 'core': needs review
src/hkdf.rs:66 copy_memory(chunk, &t[..chunk_len]);
^~~~~~~~~~~
src/hkdf.rs:66:20: 66:20 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:11:5: 11:26 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/md5.rs:11 use std::iter::range_step;
^~~~~~~~~~~~~~~~~~~~~
src/md5.rs:11:26: 11:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:61:71: 61:86 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:61 w.wrapping_add(f(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~~
src/md5.rs:61:86: 61:86 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:61:56: 61:70 warning: use of unstable library feature 'core': pending integer conventions
src/md5.rs:61 w.wrapping_add(f(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~
src/md5.rs:61:70: 61:70 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:61:40: 61:55 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:61 w.wrapping_add(f(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~~
src/md5.rs:61:55: 61:55 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:61:15: 61:39 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:61 w.wrapping_add(f(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:61:39: 61:39 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:65:71: 65:86 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:65 w.wrapping_add(g(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~~
src/md5.rs:65:86: 65:86 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:65:56: 65:70 warning: use of unstable library feature 'core': pending integer conventions
src/md5.rs:65 w.wrapping_add(g(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~
src/md5.rs:65:70: 65:70 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:65:40: 65:55 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:65 w.wrapping_add(g(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~~
src/md5.rs:65:55: 65:55 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:65:15: 65:39 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:65 w.wrapping_add(g(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:65:39: 65:39 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:69:71: 69:86 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:69 w.wrapping_add(h(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~~
src/md5.rs:69:86: 69:86 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:69:56: 69:70 warning: use of unstable library feature 'core': pending integer conventions
src/md5.rs:69 w.wrapping_add(h(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~
src/md5.rs:69:70: 69:70 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:69:40: 69:55 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:69 w.wrapping_add(h(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~~
src/md5.rs:69:55: 69:55 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:69:15: 69:39 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:69 w.wrapping_add(h(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:69:39: 69:39 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:73:71: 73:86 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:73 w.wrapping_add(i(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~~
src/md5.rs:73:86: 73:86 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:73:56: 73:70 warning: use of unstable library feature 'core': pending integer conventions
src/md5.rs:73 w.wrapping_add(i(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~
src/md5.rs:73:70: 73:70 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:73:40: 73:55 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:73 w.wrapping_add(i(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~~
src/md5.rs:73:55: 73:55 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:73:15: 73:39 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:73 w.wrapping_add(i(x, y, z)).wrapping_add(m).rotate_left(s).wrapping_add(x)
^~~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:73:39: 73:39 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:86:18: 86:28 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/md5.rs:86 for i in range_step(0, 16, 4) {
^~~~~~~~~~
src/md5.rs:86:28: 86:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:87:42: 87:61 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:87 a = op_f(a, b, c, d, data[i].wrapping_add(C1[i]), 7);
^~~~~~~~~~~~~~~~~~~
src/md5.rs:87:61: 87:61 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:88:46: 88:69 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:88 d = op_f(d, a, b, c, data[i + 1].wrapping_add(C1[i + 1]), 12);
^~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:88:69: 88:69 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:89:46: 89:69 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:89 c = op_f(c, d, a, b, data[i + 2].wrapping_add(C1[i + 2]), 17);
^~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:89:69: 89:69 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:90:46: 90:69 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:90 b = op_f(b, c, d, a, data[i + 3].wrapping_add(C1[i + 3]), 22);
^~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:90:69: 90:69 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:95:18: 95:28 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/md5.rs:95 for i in range_step(0, 16, 4) {
^~~~~~~~~~
src/md5.rs:95:28: 95:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:96:49: 96:68 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:96 a = op_g(a, b, c, d, data[t & 0x0f].wrapping_add(C2[i]), 5);
^~~~~~~~~~~~~~~~~~~
src/md5.rs:96:68: 96:68 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:97:55: 97:78 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:97 d = op_g(d, a, b, c, data[(t + 5) & 0x0f].wrapping_add(C2[i + 1]), 9);
^~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:97:78: 97:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:98:56: 98:79 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:98 c = op_g(c, d, a, b, data[(t + 10) & 0x0f].wrapping_add(C2[i + 2]), 14);
^~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:98:79: 98:79 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:99:56: 99:79 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:99 b = op_g(b, c, d, a, data[(t + 15) & 0x0f].wrapping_add(C2[i + 3]), 20);
^~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:99:79: 99:79 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:105:18: 105:28 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/md5.rs:105 for i in range_step(0, 16, 4) {
^~~~~~~~~~
src/md5.rs:105:28: 105:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:106:49: 106:68 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:106 a = op_h(a, b, c, d, data[t & 0x0f].wrapping_add(C3[i]), 4);
^~~~~~~~~~~~~~~~~~~
src/md5.rs:106:68: 106:68 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:107:55: 107:78 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:107 d = op_h(d, a, b, c, data[(t + 3) & 0x0f].wrapping_add(C3[i + 1]), 11);
^~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:107:78: 107:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:108:55: 108:78 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:108 c = op_h(c, d, a, b, data[(t + 6) & 0x0f].wrapping_add(C3[i + 2]), 16);
^~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:108:78: 108:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:109:55: 109:78 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:109 b = op_h(b, c, d, a, data[(t + 9) & 0x0f].wrapping_add(C3[i + 3]), 23);
^~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:109:78: 109:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:115:18: 115:28 warning: use of unstable library feature 'core': likely to be replaced by range notation and adapters
src/md5.rs:115 for i in range_step(0, 16, 4) {
^~~~~~~~~~
src/md5.rs:115:28: 115:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:116:49: 116:68 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:116 a = op_i(a, b, c, d, data[t & 0x0f].wrapping_add(C4[i]), 6);
^~~~~~~~~~~~~~~~~~~
src/md5.rs:116:68: 116:68 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:117:55: 117:78 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:117 d = op_i(d, a, b, c, data[(t + 7) & 0x0f].wrapping_add(C4[i + 1]), 10);
^~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:117:78: 117:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:118:56: 118:79 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:118 c = op_i(c, d, a, b, data[(t + 14) & 0x0f].wrapping_add(C4[i + 2]), 15);
^~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:118:79: 118:79 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:119:56: 119:79 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:119 b = op_i(b, c, d, a, data[(t + 21) & 0x0f].wrapping_add(C4[i + 3]), 21);
^~~~~~~~~~~~~~~~~~~~~~~
src/md5.rs:119:79: 119:79 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:123:27: 123:42 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:123 self.s0 = self.s0.wrapping_add(a);
^~~~~~~~~~~~~~~
src/md5.rs:123:42: 123:42 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:124:27: 124:42 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:124 self.s1 = self.s1.wrapping_add(b);
^~~~~~~~~~~~~~~
src/md5.rs:124:42: 124:42 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:125:27: 125:42 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:125 self.s2 = self.s2.wrapping_add(c);
^~~~~~~~~~~~~~~
src/md5.rs:125:42: 125:42 help: add #![feature(core)] to the crate attributes to silence this warning
src/md5.rs:126:27: 126:42 warning: use of unstable library feature 'core': may be removed or relocated
src/md5.rs:126 self.s3 = self.s3.wrapping_add(d);
^~~~~~~~~~~~~~~
src/md5.rs:126:42: 126:42 help: add #![feature(core)] to the crate attributes to silence this warning
src/pbkdf2.rs:15:5: 15:35 warning: use of unstable library feature 'core': needs review
src/pbkdf2.rs:15 use std::slice::bytes::copy_memory;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/pbkdf2.rs:15:35: 15:35 help: add #![feature(core)] to the crate attributes to silence this warning
src/pbkdf2.rs:108:13: 108:24 warning: use of unstable library feature 'core': needs review
src/pbkdf2.rs:108 copy_memory(chunk, &tmp[..chunk_len]);
^~~~~~~~~~~
src/pbkdf2.rs:108:24: 108:24 help: add #![feature(core)] to the crate attributes to silence this warning
src/poly1305.rs:123:25: 123:40 warning: use of unstable library feature 'core': may be removed or relocated
src/poly1305.rs:123 let mut g0 = h0.wrapping_add(5); c = g0 >> 26; g0 &= 0x3ffffff;
^~~~~~~~~~~~~~~
src/poly1305.rs:123:40: 123:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/poly1305.rs:124:25: 124:40 warning: use of unstable library feature 'core': may be removed or relocated
src/poly1305.rs:124 let mut g1 = h1.wrapping_add(c); c = g1 >> 26; g1 &= 0x3ffffff;
^~~~~~~~~~~~~~~
src/poly1305.rs:124:40: 124:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/poly1305.rs:125:25: 125:40 warning: use of unstable library feature 'core': may be removed or relocated
src/poly1305.rs:125 let mut g2 = h2.wrapping_add(c); c = g2 >> 26; g2 &= 0x3ffffff;
^~~~~~~~~~~~~~~
src/poly1305.rs:125:40: 125:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/poly1305.rs:126:25: 126:40 warning: use of unstable library feature 'core': may be removed or relocated
src/poly1305.rs:126 let mut g3 = h3.wrapping_add(c); c = g3 >> 26; g3 &= 0x3ffffff;
^~~~~~~~~~~~~~~
src/poly1305.rs:126:40: 126:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/poly1305.rs:127:41: 127:62 warning: use of unstable library feature 'core': may be removed or relocated
src/poly1305.rs:127 let mut g4 = h4.wrapping_add(c).wrapping_sub(1 << 26);
^~~~~~~~~~~~~~~~~~~~~
src/poly1305.rs:127:62: 127:62 help: add #![feature(core)] to the crate attributes to silence this warning
src/poly1305.rs:127:25: 127:40 warning: use of unstable library feature 'core': may be removed or relocated
src/poly1305.rs:127 let mut g4 = h4.wrapping_add(c).wrapping_sub(1 << 26);
^~~~~~~~~~~~~~~
src/poly1305.rs:127:40: 127:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/poly1305.rs:130:41: 130:56 warning: use of unstable library feature 'core': may be removed or relocated
src/poly1305.rs:130 let mut mask = (g4 >> (32 - 1)).wrapping_sub(1);
^~~~~~~~~~~~~~~
src/poly1305.rs:130:56: 130:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/rc4.rs:32:46: 32:78 warning: use of unstable library feature 'core': may be removed or relocated
src/rc4.rs:32 j = j.wrapping_add(rc4.state[i]).wrapping_add(key[i % key.len()]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/rc4.rs:32:78: 32:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/rc4.rs:32:19: 32:45 warning: use of unstable library feature 'core': may be removed or relocated
src/rc4.rs:32 j = j.wrapping_add(rc4.state[i]).wrapping_add(key[i % key.len()]);
^~~~~~~~~~~~~~~~~~~~~~~~~~
src/rc4.rs:32:45: 32:45 help: add #![feature(core)] to the crate attributes to silence this warning
src/rc4.rs:38:25: 38:40 warning: use of unstable library feature 'core': may be removed or relocated
src/rc4.rs:38 self.i = self.i.wrapping_add(1);
^~~~~~~~~~~~~~~
src/rc4.rs:38:40: 38:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/rc4.rs:39:25: 39:66 warning: use of unstable library feature 'core': may be removed or relocated
src/rc4.rs:39 self.j = self.j.wrapping_add(self.state[self.i as usize]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/rc4.rs:39:66: 39:66 help: add #![feature(core)] to the crate attributes to silence this warning
src/rc4.rs:41:57: 41:98 warning: use of unstable library feature 'core': may be removed or relocated
src/rc4.rs:41 let k = self.state[(self.state[self.i as usize].wrapping_add(self.state[self.j as usize])) as usize];
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/rc4.rs:41:98: 41:98 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:55: 50:73 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:73: 50:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:38: 50:54 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:50:54: 50:54 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:50:17: 50:37 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:50 $a = $a.wrapping_add($round).wrapping_add($x).wrapping_add($add);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:50:37: 50:37 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:51:40: 51:56 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:51 $a = circular_shift($bits, $a).wrapping_add($e);
^~~~~~~~~~~~~~~~
src/ripemd160.rs:51:56: 51:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:138:45: 138:64 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:138 bbb[3] = bbb[3].wrapping_add($h[1]).wrapping_add(bb[2]);
^~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:138:64: 138:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:138:25: 138:44 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:138 bbb[3] = bbb[3].wrapping_add($h[1]).wrapping_add(bb[2]);
^~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:138:44: 138:44 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:139:45: 139:65 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:139 $h[1] = $h[2].wrapping_add(bb[3]).wrapping_add(bbb[4]);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:139:65: 139:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:139:25: 139:44 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:139 $h[1] = $h[2].wrapping_add(bb[3]).wrapping_add(bbb[4]);
^~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:139:44: 139:44 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:140:45: 140:65 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:140 $h[2] = $h[3].wrapping_add(bb[4]).wrapping_add(bbb[0]);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:140:65: 140:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:140:25: 140:44 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:140 $h[2] = $h[3].wrapping_add(bb[4]).wrapping_add(bbb[0]);
^~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:140:44: 140:44 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:141:45: 141:65 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:141 $h[3] = $h[4].wrapping_add(bb[0]).wrapping_add(bbb[1]);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:141:65: 141:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:141:25: 141:44 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:141 $h[3] = $h[4].wrapping_add(bb[0]).wrapping_add(bbb[1]);
^~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:141:44: 141:44 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:142:45: 142:65 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:142 $h[4] = $h[0].wrapping_add(bb[1]).wrapping_add(bbb[2]);
^~~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:142:65: 142:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/ripemd160.rs:142:25: 142:44 warning: use of unstable library feature 'core': may be removed or relocated
src/ripemd160.rs:142 $h[4] = $h[0].wrapping_add(bb[1]).wrapping_add(bbb[2]);
^~~~~~~~~~~~~~~~~~~
src/ripemd160.rs:142:44: 142:44 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:19:5: 19:35 warning: use of unstable library feature 'core': needs review
src/scrypt.rs:19 use std::slice::bytes::copy_memory;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:19:35: 19:35 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:65: 41:82 warning: use of unstable library feature 'core': pending integer conventions
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~
src/scrypt.rs:41:82: 41:82 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:41:41: 41:64 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:41 $( x[$set_idx] ^= x[$idx_a].wrapping_add(x[$idx_b]).rotate_left($rot); )*
^~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:41:64: 41:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:85:18: 85:71 warning: use of unstable library feature 'core': may be removed or relocated
src/scrypt.rs:85 x[i].wrapping_add(read_u32_le(&input[i * 4..(i + 1) * 4])));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/scrypt.rs:85:71: 85:71 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:100:5: 100:16 warning: use of unstable library feature 'core': needs review
src/scrypt.rs:100 copy_memory(&mut x, &input[input.len() - 64..]);
^~~~~~~~~~~
src/scrypt.rs:100:16: 100:16 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:108:9: 108:20 warning: use of unstable library feature 'core': needs review
src/scrypt.rs:108 copy_memory(&mut output[pos..pos + 64], &x);
^~~~~~~~~~~
src/scrypt.rs:108:20: 108:20 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:131:9: 131:20 warning: use of unstable library feature 'core': needs review
src/scrypt.rs:131 copy_memory(chunk, b);
^~~~~~~~~~~
src/scrypt.rs:131:20: 131:20 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:169:19: 169:29 warning: use of unstable library feature 'core': trait is likely to be removed
src/scrypt.rs:169 let r = r.to_usize().unwrap();
^~~~~~~~~~
src/scrypt.rs:169:29: 169:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/scrypt.rs:170:19: 170:29 warning: use of unstable library feature 'core': trait is likely to be removed
src/scrypt.rs:170 let p = p.to_usize().unwrap();
^~~~~~~~~~
src/scrypt.rs:170:29: 170:29 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:86:13: 86:28 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:86 u32x4(e.wrapping_add(a), b, c, d)
^~~~~~~~~~~~~~~
src/sha1.rs:86:28: 86:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:101:26: 101:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:101 let w16 = (x0 ^ w13).rotate_left(1);
^~~~~~~~~~~~~~
src/sha1.rs:101:40: 101:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:102:26: 102:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:102 let w17 = (x1 ^ w14).rotate_left(1);
^~~~~~~~~~~~~~
src/sha1.rs:102:40: 102:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:103:26: 103:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:103 let w18 = (x2 ^ w15).rotate_left(1);
^~~~~~~~~~~~~~
src/sha1.rs:103:40: 103:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:104:26: 104:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:104 let w19 = (x3 ^ w16).rotate_left(1);
^~~~~~~~~~~~~~
src/sha1.rs:104:40: 104:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:117:37: 117:52 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:117 sha1_first_add(sha1_first(abcd).rotate_left(30), msg)
^~~~~~~~~~~~~~~
src/sha1.rs:117:52: 117:52 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:147:79: 147:94 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:147 e = e.wrapping_add(a.rotate_left(5)).wrapping_add(bool3ary_202!(b, c, d)).wrapping_add(t);
^~~~~~~~~~~~~~~
src/sha1.rs:147:94: 147:94 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:147:42: 147:78 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:147 e = e.wrapping_add(a.rotate_left(5)).wrapping_add(bool3ary_202!(b, c, d)).wrapping_add(t);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:147:78: 147:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:147:11: 147:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:147 e = e.wrapping_add(a.rotate_left(5)).wrapping_add(bool3ary_202!(b, c, d)).wrapping_add(t);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:147:41: 147:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:147:26: 147:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:147 e = e.wrapping_add(a.rotate_left(5)).wrapping_add(bool3ary_202!(b, c, d)).wrapping_add(t);
^~~~~~~~~~~~~~
src/sha1.rs:147:40: 147:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:148:11: 148:26 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:148 b = b.rotate_left(30);
^~~~~~~~~~~~~~~
src/sha1.rs:148:26: 148:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:150:79: 150:94 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:150 d = d.wrapping_add(e.rotate_left(5)).wrapping_add(bool3ary_202!(a, b, c)).wrapping_add(u);
^~~~~~~~~~~~~~~
src/sha1.rs:150:94: 150:94 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:150:42: 150:78 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:150 d = d.wrapping_add(e.rotate_left(5)).wrapping_add(bool3ary_202!(a, b, c)).wrapping_add(u);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:150:78: 150:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:150:11: 150:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:150 d = d.wrapping_add(e.rotate_left(5)).wrapping_add(bool3ary_202!(a, b, c)).wrapping_add(u);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:150:41: 150:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:150:26: 150:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:150 d = d.wrapping_add(e.rotate_left(5)).wrapping_add(bool3ary_202!(a, b, c)).wrapping_add(u);
^~~~~~~~~~~~~~
src/sha1.rs:150:40: 150:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:151:11: 151:26 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:151 a = a.rotate_left(30);
^~~~~~~~~~~~~~~
src/sha1.rs:151:26: 151:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:153:79: 153:94 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:153 c = c.wrapping_add(d.rotate_left(5)).wrapping_add(bool3ary_202!(e, a, b)).wrapping_add(v);
^~~~~~~~~~~~~~~
src/sha1.rs:153:94: 153:94 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:153:42: 153:78 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:153 c = c.wrapping_add(d.rotate_left(5)).wrapping_add(bool3ary_202!(e, a, b)).wrapping_add(v);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:153:78: 153:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:153:11: 153:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:153 c = c.wrapping_add(d.rotate_left(5)).wrapping_add(bool3ary_202!(e, a, b)).wrapping_add(v);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:153:41: 153:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:153:26: 153:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:153 c = c.wrapping_add(d.rotate_left(5)).wrapping_add(bool3ary_202!(e, a, b)).wrapping_add(v);
^~~~~~~~~~~~~~
src/sha1.rs:153:40: 153:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:154:11: 154:26 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:154 e = e.rotate_left(30);
^~~~~~~~~~~~~~~
src/sha1.rs:154:26: 154:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:156:79: 156:94 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:156 b = b.wrapping_add(c.rotate_left(5)).wrapping_add(bool3ary_202!(d, e, a)).wrapping_add(w);
^~~~~~~~~~~~~~~
src/sha1.rs:156:94: 156:94 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:156:42: 156:78 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:156 b = b.wrapping_add(c.rotate_left(5)).wrapping_add(bool3ary_202!(d, e, a)).wrapping_add(w);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:156:78: 156:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:156:11: 156:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:156 b = b.wrapping_add(c.rotate_left(5)).wrapping_add(bool3ary_202!(d, e, a)).wrapping_add(w);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:156:41: 156:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:156:26: 156:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:156 b = b.wrapping_add(c.rotate_left(5)).wrapping_add(bool3ary_202!(d, e, a)).wrapping_add(w);
^~~~~~~~~~~~~~
src/sha1.rs:156:40: 156:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:157:11: 157:26 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:157 d = d.rotate_left(30);
^~~~~~~~~~~~~~~
src/sha1.rs:157:26: 157:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:172:79: 172:94 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:172 e = e.wrapping_add(a.rotate_left(5)).wrapping_add(bool3ary_150!(b, c, d)).wrapping_add(t);
^~~~~~~~~~~~~~~
src/sha1.rs:172:94: 172:94 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:172:42: 172:78 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:172 e = e.wrapping_add(a.rotate_left(5)).wrapping_add(bool3ary_150!(b, c, d)).wrapping_add(t);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:172:78: 172:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:172:11: 172:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:172 e = e.wrapping_add(a.rotate_left(5)).wrapping_add(bool3ary_150!(b, c, d)).wrapping_add(t);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:172:41: 172:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:172:26: 172:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:172 e = e.wrapping_add(a.rotate_left(5)).wrapping_add(bool3ary_150!(b, c, d)).wrapping_add(t);
^~~~~~~~~~~~~~
src/sha1.rs:172:40: 172:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:173:11: 173:26 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:173 b = b.rotate_left(30);
^~~~~~~~~~~~~~~
src/sha1.rs:173:26: 173:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:175:79: 175:94 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:175 d = d.wrapping_add(e.rotate_left(5)).wrapping_add(bool3ary_150!(a, b, c)).wrapping_add(u);
^~~~~~~~~~~~~~~
src/sha1.rs:175:94: 175:94 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:175:42: 175:78 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:175 d = d.wrapping_add(e.rotate_left(5)).wrapping_add(bool3ary_150!(a, b, c)).wrapping_add(u);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:175:78: 175:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:175:11: 175:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:175 d = d.wrapping_add(e.rotate_left(5)).wrapping_add(bool3ary_150!(a, b, c)).wrapping_add(u);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:175:41: 175:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:175:26: 175:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:175 d = d.wrapping_add(e.rotate_left(5)).wrapping_add(bool3ary_150!(a, b, c)).wrapping_add(u);
^~~~~~~~~~~~~~
src/sha1.rs:175:40: 175:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:176:11: 176:26 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:176 a = a.rotate_left(30);
^~~~~~~~~~~~~~~
src/sha1.rs:176:26: 176:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:178:79: 178:94 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:178 c = c.wrapping_add(d.rotate_left(5)).wrapping_add(bool3ary_150!(e, a, b)).wrapping_add(v);
^~~~~~~~~~~~~~~
src/sha1.rs:178:94: 178:94 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:178:42: 178:78 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:178 c = c.wrapping_add(d.rotate_left(5)).wrapping_add(bool3ary_150!(e, a, b)).wrapping_add(v);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:178:78: 178:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:178:11: 178:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:178 c = c.wrapping_add(d.rotate_left(5)).wrapping_add(bool3ary_150!(e, a, b)).wrapping_add(v);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:178:41: 178:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:178:26: 178:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:178 c = c.wrapping_add(d.rotate_left(5)).wrapping_add(bool3ary_150!(e, a, b)).wrapping_add(v);
^~~~~~~~~~~~~~
src/sha1.rs:178:40: 178:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:179:11: 179:26 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:179 e = e.rotate_left(30);
^~~~~~~~~~~~~~~
src/sha1.rs:179:26: 179:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:181:79: 181:94 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:181 b = b.wrapping_add(c.rotate_left(5)).wrapping_add(bool3ary_150!(d, e, a)).wrapping_add(w);
^~~~~~~~~~~~~~~
src/sha1.rs:181:94: 181:94 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:181:42: 181:78 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:181 b = b.wrapping_add(c.rotate_left(5)).wrapping_add(bool3ary_150!(d, e, a)).wrapping_add(w);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:181:78: 181:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:181:11: 181:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:181 b = b.wrapping_add(c.rotate_left(5)).wrapping_add(bool3ary_150!(d, e, a)).wrapping_add(w);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:181:41: 181:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:181:26: 181:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:181 b = b.wrapping_add(c.rotate_left(5)).wrapping_add(bool3ary_150!(d, e, a)).wrapping_add(w);
^~~~~~~~~~~~~~
src/sha1.rs:181:40: 181:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:182:11: 182:26 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:182 d = d.rotate_left(30);
^~~~~~~~~~~~~~~
src/sha1.rs:182:26: 182:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:197:79: 197:94 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:197 e = e.wrapping_add(a.rotate_left(5)).wrapping_add(bool3ary_232!(b, c, d)).wrapping_add(t);
^~~~~~~~~~~~~~~
src/sha1.rs:197:94: 197:94 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:197:42: 197:78 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:197 e = e.wrapping_add(a.rotate_left(5)).wrapping_add(bool3ary_232!(b, c, d)).wrapping_add(t);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:197:78: 197:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:197:11: 197:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:197 e = e.wrapping_add(a.rotate_left(5)).wrapping_add(bool3ary_232!(b, c, d)).wrapping_add(t);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:197:41: 197:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:197:26: 197:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:197 e = e.wrapping_add(a.rotate_left(5)).wrapping_add(bool3ary_232!(b, c, d)).wrapping_add(t);
^~~~~~~~~~~~~~
src/sha1.rs:197:40: 197:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:198:11: 198:26 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:198 b = b.rotate_left(30);
^~~~~~~~~~~~~~~
src/sha1.rs:198:26: 198:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:200:79: 200:94 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:200 d = d.wrapping_add(e.rotate_left(5)).wrapping_add(bool3ary_232!(a, b, c)).wrapping_add(u);
^~~~~~~~~~~~~~~
src/sha1.rs:200:94: 200:94 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:200:42: 200:78 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:200 d = d.wrapping_add(e.rotate_left(5)).wrapping_add(bool3ary_232!(a, b, c)).wrapping_add(u);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:200:78: 200:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:200:11: 200:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:200 d = d.wrapping_add(e.rotate_left(5)).wrapping_add(bool3ary_232!(a, b, c)).wrapping_add(u);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:200:41: 200:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:200:26: 200:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:200 d = d.wrapping_add(e.rotate_left(5)).wrapping_add(bool3ary_232!(a, b, c)).wrapping_add(u);
^~~~~~~~~~~~~~
src/sha1.rs:200:40: 200:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:201:11: 201:26 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:201 a = a.rotate_left(30);
^~~~~~~~~~~~~~~
src/sha1.rs:201:26: 201:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:203:79: 203:94 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:203 c = c.wrapping_add(d.rotate_left(5)).wrapping_add(bool3ary_232!(e, a, b)).wrapping_add(v);
^~~~~~~~~~~~~~~
src/sha1.rs:203:94: 203:94 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:203:42: 203:78 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:203 c = c.wrapping_add(d.rotate_left(5)).wrapping_add(bool3ary_232!(e, a, b)).wrapping_add(v);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:203:78: 203:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:203:11: 203:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:203 c = c.wrapping_add(d.rotate_left(5)).wrapping_add(bool3ary_232!(e, a, b)).wrapping_add(v);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:203:41: 203:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:203:26: 203:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:203 c = c.wrapping_add(d.rotate_left(5)).wrapping_add(bool3ary_232!(e, a, b)).wrapping_add(v);
^~~~~~~~~~~~~~
src/sha1.rs:203:40: 203:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:204:11: 204:26 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:204 e = e.rotate_left(30);
^~~~~~~~~~~~~~~
src/sha1.rs:204:26: 204:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:206:79: 206:94 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:206 b = b.wrapping_add(c.rotate_left(5)).wrapping_add(bool3ary_232!(d, e, a)).wrapping_add(w);
^~~~~~~~~~~~~~~
src/sha1.rs:206:94: 206:94 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:206:42: 206:78 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:206 b = b.wrapping_add(c.rotate_left(5)).wrapping_add(bool3ary_232!(d, e, a)).wrapping_add(w);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:206:78: 206:78 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:206:11: 206:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:206 b = b.wrapping_add(c.rotate_left(5)).wrapping_add(bool3ary_232!(d, e, a)).wrapping_add(w);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha1.rs:206:41: 206:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:206:26: 206:40 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:206 b = b.wrapping_add(c.rotate_left(5)).wrapping_add(bool3ary_232!(d, e, a)).wrapping_add(w);
^~~~~~~~~~~~~~
src/sha1.rs:206:40: 206:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:207:11: 207:26 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:207 d = d.rotate_left(30);
^~~~~~~~~~~~~~~
src/sha1.rs:207:26: 207:26 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:291:28: 291:43 warning: use of unstable library feature 'core': pending integer conventions
src/sha1.rs:291 let e = sha1_first(h1).rotate_left(30);
^~~~~~~~~~~~~~~
src/sha1.rs:291:43: 291:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:294:25: 294:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:294 state[0] = state[0].wrapping_add(a);
^~~~~~~~~~~~~~~
src/sha1.rs:294:40: 294:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:295:25: 295:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:295 state[1] = state[1].wrapping_add(b);
^~~~~~~~~~~~~~~
src/sha1.rs:295:40: 295:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:296:25: 296:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:296 state[2] = state[2].wrapping_add(c);
^~~~~~~~~~~~~~~
src/sha1.rs:296:40: 296:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:297:25: 297:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:297 state[3] = state[3].wrapping_add(d);
^~~~~~~~~~~~~~~
src/sha1.rs:297:40: 297:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha1.rs:298:25: 298:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha1.rs:298 state[4] = state[4].wrapping_add(e);
^~~~~~~~~~~~~~~
src/sha1.rs:298:40: 298:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:123:18: 123:44 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:123 let w16 = x0.wrapping_add(sigma1!(w14));
^~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha2.rs:123:44: 123:44 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:117:27: 117:43 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:117 ($a:expr) => (($a.rotate_right(17) ^ $a.rotate_right(19) ^ ($a >> 10)))
^~~~~~~~~~~~~~~~
src/sha2.rs:117:43: 117:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:117:49: 117:65 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:117 ($a:expr) => (($a.rotate_right(17) ^ $a.rotate_right(19) ^ ($a >> 10)))
^~~~~~~~~~~~~~~~
src/sha2.rs:117:65: 117:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:124:18: 124:44 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:124 let w17 = x1.wrapping_add(sigma1!(w15));
^~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha2.rs:124:44: 124:44 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:117:27: 117:43 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:117 ($a:expr) => (($a.rotate_right(17) ^ $a.rotate_right(19) ^ ($a >> 10)))
^~~~~~~~~~~~~~~~
src/sha2.rs:117:43: 117:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:117:49: 117:65 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:117 ($a:expr) => (($a.rotate_right(17) ^ $a.rotate_right(19) ^ ($a >> 10)))
^~~~~~~~~~~~~~~~
src/sha2.rs:117:65: 117:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:125:18: 125:44 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:125 let w18 = x2.wrapping_add(sigma1!(w16));
^~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha2.rs:125:44: 125:44 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:117:27: 117:43 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:117 ($a:expr) => (($a.rotate_right(17) ^ $a.rotate_right(19) ^ ($a >> 10)))
^~~~~~~~~~~~~~~~
src/sha2.rs:117:43: 117:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:117:49: 117:65 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:117 ($a:expr) => (($a.rotate_right(17) ^ $a.rotate_right(19) ^ ($a >> 10)))
^~~~~~~~~~~~~~~~
src/sha2.rs:117:65: 117:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:126:18: 126:44 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:126 let w19 = x3.wrapping_add(sigma1!(w17));
^~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha2.rs:126:44: 126:44 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:117:27: 117:43 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:117 ($a:expr) => (($a.rotate_right(17) ^ $a.rotate_right(19) ^ ($a >> 10)))
^~~~~~~~~~~~~~~~
src/sha2.rs:117:43: 117:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:117:49: 117:65 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:117 ($a:expr) => (($a.rotate_right(17) ^ $a.rotate_right(19) ^ ($a >> 10)))
^~~~~~~~~~~~~~~~
src/sha2.rs:117:65: 117:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:158:88: 158:104 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:158 let x0 = big_sigma1!(e0).wrapping_add(bool3ary_202!(e0, f0, g0)).wrapping_add(wk0).wrapping_add(h0);
^~~~~~~~~~~~~~~~
src/sha2.rs:158:104: 158:104 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:158:70: 158:87 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:158 let x0 = big_sigma1!(e0).wrapping_add(bool3ary_202!(e0, f0, g0)).wrapping_add(wk0).wrapping_add(h0);
^~~~~~~~~~~~~~~~~
src/sha2.rs:158:87: 158:87 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:158:30: 158:69 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:158 let x0 = big_sigma1!(e0).wrapping_add(bool3ary_202!(e0, f0, g0)).wrapping_add(wk0).wrapping_add(h0);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha2.rs:158:69: 158:69 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:144:27: 144:42 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:144 ($a:expr) => (($a.rotate_right(6) ^ $a.rotate_right(11) ^ $a.rotate_right(25)))
^~~~~~~~~~~~~~~
src/sha2.rs:144:42: 144:42 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:144:48: 144:64 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:144 ($a:expr) => (($a.rotate_right(6) ^ $a.rotate_right(11) ^ $a.rotate_right(25)))
^~~~~~~~~~~~~~~~
src/sha2.rs:144:64: 144:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:144:70: 144:86 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:144 ($a:expr) => (($a.rotate_right(6) ^ $a.rotate_right(11) ^ $a.rotate_right(25)))
^~~~~~~~~~~~~~~~
src/sha2.rs:144:86: 144:86 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:159:30: 159:69 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:159 let y0 = big_sigma0!(a0).wrapping_add(bool3ary_232!(a0, b0, c0));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha2.rs:159:69: 159:69 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:141:27: 141:42 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:141 ($a:expr) => (($a.rotate_right(2) ^ $a.rotate_right(13) ^ $a.rotate_right(22)))
^~~~~~~~~~~~~~~
src/sha2.rs:141:42: 141:42 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:141:48: 141:64 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:141 ($a:expr) => (($a.rotate_right(2) ^ $a.rotate_right(13) ^ $a.rotate_right(22)))
^~~~~~~~~~~~~~~~
src/sha2.rs:141:64: 141:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:141:70: 141:86 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:141 ($a:expr) => (($a.rotate_right(2) ^ $a.rotate_right(13) ^ $a.rotate_right(22)))
^~~~~~~~~~~~~~~~
src/sha2.rs:141:86: 141:86 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:161:12: 161:28 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:161 x0.wrapping_add(y0), a0, b0, c0,
^~~~~~~~~~~~~~~~
src/sha2.rs:161:28: 161:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:162:12: 162:28 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:162 x0.wrapping_add(d0), e0, f0, g0);
^~~~~~~~~~~~~~~~
src/sha2.rs:162:28: 162:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:165:88: 165:104 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:165 let x1 = big_sigma1!(e1).wrapping_add(bool3ary_202!(e1, f1, g1)).wrapping_add(wk1).wrapping_add(h1);
^~~~~~~~~~~~~~~~
src/sha2.rs:165:104: 165:104 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:165:70: 165:87 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:165 let x1 = big_sigma1!(e1).wrapping_add(bool3ary_202!(e1, f1, g1)).wrapping_add(wk1).wrapping_add(h1);
^~~~~~~~~~~~~~~~~
src/sha2.rs:165:87: 165:87 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:165:30: 165:69 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:165 let x1 = big_sigma1!(e1).wrapping_add(bool3ary_202!(e1, f1, g1)).wrapping_add(wk1).wrapping_add(h1);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha2.rs:165:69: 165:69 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:144:27: 144:42 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:144 ($a:expr) => (($a.rotate_right(6) ^ $a.rotate_right(11) ^ $a.rotate_right(25)))
^~~~~~~~~~~~~~~
src/sha2.rs:144:42: 144:42 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:144:48: 144:64 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:144 ($a:expr) => (($a.rotate_right(6) ^ $a.rotate_right(11) ^ $a.rotate_right(25)))
^~~~~~~~~~~~~~~~
src/sha2.rs:144:64: 144:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:144:70: 144:86 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:144 ($a:expr) => (($a.rotate_right(6) ^ $a.rotate_right(11) ^ $a.rotate_right(25)))
^~~~~~~~~~~~~~~~
src/sha2.rs:144:86: 144:86 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:166:30: 166:69 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:166 let y1 = big_sigma0!(a1).wrapping_add(bool3ary_232!(a1, b1, c1));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha2.rs:166:69: 166:69 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:141:27: 141:42 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:141 ($a:expr) => (($a.rotate_right(2) ^ $a.rotate_right(13) ^ $a.rotate_right(22)))
^~~~~~~~~~~~~~~
src/sha2.rs:141:42: 141:42 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:141:48: 141:64 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:141 ($a:expr) => (($a.rotate_right(2) ^ $a.rotate_right(13) ^ $a.rotate_right(22)))
^~~~~~~~~~~~~~~~
src/sha2.rs:141:64: 141:64 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:141:70: 141:86 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:141 ($a:expr) => (($a.rotate_right(2) ^ $a.rotate_right(13) ^ $a.rotate_right(22)))
^~~~~~~~~~~~~~~~
src/sha2.rs:141:86: 141:86 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:168:12: 168:28 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:168 x1.wrapping_add(y1), a1, b1, c1,
^~~~~~~~~~~~~~~~
src/sha2.rs:168:28: 168:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:169:12: 169:28 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:169 x1.wrapping_add(d1), e1, f1, g1);
^~~~~~~~~~~~~~~~
src/sha2.rs:169:28: 169:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:251:25: 251:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:251 state[0] = state[0].wrapping_add(a);
^~~~~~~~~~~~~~~
src/sha2.rs:251:40: 251:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:252:25: 252:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:252 state[1] = state[1].wrapping_add(b);
^~~~~~~~~~~~~~~
src/sha2.rs:252:40: 252:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:253:25: 253:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:253 state[2] = state[2].wrapping_add(c);
^~~~~~~~~~~~~~~
src/sha2.rs:253:40: 253:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:254:25: 254:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:254 state[3] = state[3].wrapping_add(d);
^~~~~~~~~~~~~~~
src/sha2.rs:254:40: 254:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:255:25: 255:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:255 state[4] = state[4].wrapping_add(e);
^~~~~~~~~~~~~~~
src/sha2.rs:255:40: 255:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:256:25: 256:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:256 state[5] = state[5].wrapping_add(f);
^~~~~~~~~~~~~~~
src/sha2.rs:256:40: 256:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:257:25: 257:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:257 state[6] = state[6].wrapping_add(g);
^~~~~~~~~~~~~~~
src/sha2.rs:257:40: 257:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:258:25: 258:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:258 state[7] = state[7].wrapping_add(h);
^~~~~~~~~~~~~~~
src/sha2.rs:258:40: 258:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:383:69: 383:85 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:383 let w16 = sigma1(w14).wrapping_add(w9).wrapping_add(sigma0(w1)).wrapping_add(w0);
^~~~~~~~~~~~~~~~
src/sha2.rs:383:85: 383:85 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:383:44: 383:68 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:383 let w16 = sigma1(w14).wrapping_add(w9).wrapping_add(sigma0(w1)).wrapping_add(w0);
^~~~~~~~~~~~~~~~~~~~~~~~
src/sha2.rs:383:68: 383:68 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:383:27: 383:43 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:383 let w16 = sigma1(w14).wrapping_add(w9).wrapping_add(sigma0(w1)).wrapping_add(w0);
^~~~~~~~~~~~~~~~
src/sha2.rs:383:43: 383:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:384:70: 384:86 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:384 let w17 = sigma1(w15).wrapping_add(w10).wrapping_add(sigma0(w2)).wrapping_add(w1);
^~~~~~~~~~~~~~~~
src/sha2.rs:384:86: 384:86 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:384:45: 384:69 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:384 let w17 = sigma1(w15).wrapping_add(w10).wrapping_add(sigma0(w2)).wrapping_add(w1);
^~~~~~~~~~~~~~~~~~~~~~~~
src/sha2.rs:384:69: 384:69 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:384:27: 384:44 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:384 let w17 = sigma1(w15).wrapping_add(w10).wrapping_add(sigma0(w2)).wrapping_add(w1);
^~~~~~~~~~~~~~~~~
src/sha2.rs:384:44: 384:44 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:411:88: 411:104 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:411 let x0 = big_sigma1!(e0).wrapping_add(bool3ary_202!(e0, f0, g0)).wrapping_add(wk0).wrapping_add(h0);
^~~~~~~~~~~~~~~~
src/sha2.rs:411:104: 411:104 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:411:70: 411:87 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:411 let x0 = big_sigma1!(e0).wrapping_add(bool3ary_202!(e0, f0, g0)).wrapping_add(wk0).wrapping_add(h0);
^~~~~~~~~~~~~~~~~
src/sha2.rs:411:87: 411:87 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:411:30: 411:69 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:411 let x0 = big_sigma1!(e0).wrapping_add(bool3ary_202!(e0, f0, g0)).wrapping_add(wk0).wrapping_add(h0);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha2.rs:411:69: 411:69 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:396:27: 396:43 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:396 ($a:expr) => (($a.rotate_right(14) ^ $a.rotate_right(18) ^ $a.rotate_right(41)))
^~~~~~~~~~~~~~~~
src/sha2.rs:396:43: 396:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:396:49: 396:65 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:396 ($a:expr) => (($a.rotate_right(14) ^ $a.rotate_right(18) ^ $a.rotate_right(41)))
^~~~~~~~~~~~~~~~
src/sha2.rs:396:65: 396:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:396:71: 396:87 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:396 ($a:expr) => (($a.rotate_right(14) ^ $a.rotate_right(18) ^ $a.rotate_right(41)))
^~~~~~~~~~~~~~~~
src/sha2.rs:396:87: 396:87 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:412:30: 412:69 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:412 let y0 = big_sigma0!(a0).wrapping_add(bool3ary_232!(a0, b0, c0));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sha2.rs:412:69: 412:69 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:393:27: 393:43 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:393 ($a:expr) => (($a.rotate_right(28) ^ $a.rotate_right(34) ^ $a.rotate_right(39)))
^~~~~~~~~~~~~~~~
src/sha2.rs:393:43: 393:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:393:49: 393:65 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:393 ($a:expr) => (($a.rotate_right(28) ^ $a.rotate_right(34) ^ $a.rotate_right(39)))
^~~~~~~~~~~~~~~~
src/sha2.rs:393:65: 393:65 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:393:71: 393:87 warning: use of unstable library feature 'core': pending integer conventions
src/sha2.rs:393 ($a:expr) => (($a.rotate_right(28) ^ $a.rotate_right(34) ^ $a.rotate_right(39)))
^~~~~~~~~~~~~~~~
src/sha2.rs:393:87: 393:87 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:414:12: 414:28 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:414 x0.wrapping_add(y0), a0, b0, c0,
^~~~~~~~~~~~~~~~
src/sha2.rs:414:28: 414:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:415:12: 415:28 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:415 x0.wrapping_add(d0), e0, f0, g0);
^~~~~~~~~~~~~~~~
src/sha2.rs:415:28: 415:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:534:25: 534:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:534 state[0] = state[0].wrapping_add(a);
^~~~~~~~~~~~~~~
src/sha2.rs:534:40: 534:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:535:25: 535:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:535 state[1] = state[1].wrapping_add(b);
^~~~~~~~~~~~~~~
src/sha2.rs:535:40: 535:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:536:25: 536:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:536 state[2] = state[2].wrapping_add(c);
^~~~~~~~~~~~~~~
src/sha2.rs:536:40: 536:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:537:25: 537:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:537 state[3] = state[3].wrapping_add(d);
^~~~~~~~~~~~~~~
src/sha2.rs:537:40: 537:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:538:25: 538:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:538 state[4] = state[4].wrapping_add(e);
^~~~~~~~~~~~~~~
src/sha2.rs:538:40: 538:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:539:25: 539:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:539 state[5] = state[5].wrapping_add(f);
^~~~~~~~~~~~~~~
src/sha2.rs:539:40: 539:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:540:25: 540:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:540 state[6] = state[6].wrapping_add(g);
^~~~~~~~~~~~~~~
src/sha2.rs:540:40: 540:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/sha2.rs:541:25: 541:40 warning: use of unstable library feature 'core': may be removed or relocated
src/sha2.rs:541 state[7] = state[7].wrapping_add(h);
^~~~~~~~~~~~~~~
src/sha2.rs:541:40: 541:40 help: add #![feature(core)] to the crate attributes to silence this warning
src/simd.rs:48:24: 48:43 warning: use of unstable library feature 'core': may be removed or relocated
src/simd.rs:48 self.0.wrapping_add(rhs.0),
^~~~~~~~~~~~~~~~~~~
src/simd.rs:48:43: 48:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/simd.rs:49:24: 49:43 warning: use of unstable library feature 'core': may be removed or relocated
src/simd.rs:49 self.1.wrapping_add(rhs.1),
^~~~~~~~~~~~~~~~~~~
src/simd.rs:49:43: 49:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/simd.rs:50:24: 50:43 warning: use of unstable library feature 'core': may be removed or relocated
src/simd.rs:50 self.2.wrapping_add(rhs.2),
^~~~~~~~~~~~~~~~~~~
src/simd.rs:50:43: 50:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/simd.rs:51:24: 51:43 warning: use of unstable library feature 'core': may be removed or relocated
src/simd.rs:51 self.3.wrapping_add(rhs.3))
^~~~~~~~~~~~~~~~~~~
src/simd.rs:51:43: 51:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/simd.rs:60:24: 60:43 warning: use of unstable library feature 'core': may be removed or relocated
src/simd.rs:60 self.0.wrapping_sub(rhs.0),
^~~~~~~~~~~~~~~~~~~
src/simd.rs:60:43: 60:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/simd.rs:61:24: 61:43 warning: use of unstable library feature 'core': may be removed or relocated
src/simd.rs:61 self.1.wrapping_sub(rhs.1),
^~~~~~~~~~~~~~~~~~~
src/simd.rs:61:43: 61:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/simd.rs:62:24: 62:43 warning: use of unstable library feature 'core': may be removed or relocated
src/simd.rs:62 self.2.wrapping_sub(rhs.2),
^~~~~~~~~~~~~~~~~~~
src/simd.rs:62:43: 62:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/simd.rs:63:24: 63:43 warning: use of unstable library feature 'core': may be removed or relocated
src/simd.rs:63 self.3.wrapping_sub(rhs.3))
^~~~~~~~~~~~~~~~~~~
src/simd.rs:63:43: 63:43 help: add #![feature(core)] to the crate attributes to silence this warning
src/simd.rs:131:26: 131:45 warning: use of unstable library feature 'core': may be removed or relocated
src/simd.rs:131 u64x2(self.0.wrapping_add(rhs.0), self.1.wrapping_add(rhs.1))
^~~~~~~~~~~~~~~~~~~
src/simd.rs:131:45: 131:45 help: add #![feature(core)] to the crate attributes to silence this warning
src/simd.rs:131:54: 131:73 warning: use of unstable library feature 'core': may be removed or relocated
src/simd.rs:131 u64x2(self.0.wrapping_add(rhs.0), self.1.wrapping_add(rhs.1))
^~~~~~~~~~~~~~~~~~~
src/simd.rs:131:73: 131:73 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:13:5: 13:35 warning: use of unstable library feature 'core': needs review
src/sosemanuk.rs:13 use std::slice::bytes::copy_memory;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:13:35: 13:35 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:204:17: 207:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:204 r1 = r2.wrapping_add(s1 ^ match r1 & 0x01 {
src/sosemanuk.rs:205 0 => 0,
src/sosemanuk.rs:206 _ => s8
src/sosemanuk.rs:207 });
src/sosemanuk.rs:207:11: 207:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:208:42: 208:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:208 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:208:56: 208:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:208:17: 208:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:208 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:208:41: 208:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:212:17: 212:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:212 f0 = s9.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:212:33: 212:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:216:17: 219:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:216 r1 = r2.wrapping_add(s2 ^ match r1 & 0x01 {
src/sosemanuk.rs:217 0 => 0,
src/sosemanuk.rs:218 _ => s9
src/sosemanuk.rs:219 });
src/sosemanuk.rs:219:11: 219:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:220:42: 220:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:220 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:220:56: 220:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:220:17: 220:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:220 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:220:41: 220:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:224:17: 224:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:224 f1 = s0.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:224:33: 224:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:228:17: 231:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:228 r1 = r2.wrapping_add(s3 ^ match r1 & 0x01 {
src/sosemanuk.rs:229 0 => 0,
src/sosemanuk.rs:230 _ => s0
src/sosemanuk.rs:231 });
src/sosemanuk.rs:231:11: 231:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:232:42: 232:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:232 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:232:56: 232:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:232:17: 232:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:232 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:232:41: 232:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:236:17: 236:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:236 f2 = s1.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:236:33: 236:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:240:17: 243:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:240 r1 = r2.wrapping_add(s4 ^ match r1 & 0x01 {
src/sosemanuk.rs:241 0 => 0,
src/sosemanuk.rs:242 _ => s1
src/sosemanuk.rs:243 });
src/sosemanuk.rs:243:11: 243:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:244:42: 244:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:244 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:244:56: 244:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:244:17: 244:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:244 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:244:41: 244:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:248:17: 248:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:248 f3 = s2.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:248:33: 248:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:278:17: 281:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:278 r1 = r2.wrapping_add(s5 ^ match r1 & 0x01 {
src/sosemanuk.rs:279 0 => 0,
src/sosemanuk.rs:280 _ => s2
src/sosemanuk.rs:281 });
src/sosemanuk.rs:281:11: 281:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:282:42: 282:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:282 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:282:56: 282:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:282:17: 282:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:282 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:282:41: 282:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:286:17: 286:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:286 f0 = s3.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:286:33: 286:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:290:17: 293:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:290 r1 = r2.wrapping_add(s6 ^ match r1 & 0x01 {
src/sosemanuk.rs:291 0 => 0,
src/sosemanuk.rs:292 _ => s3
src/sosemanuk.rs:293 });
src/sosemanuk.rs:293:11: 293:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:294:42: 294:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:294 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:294:56: 294:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:294:17: 294:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:294 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:294:41: 294:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:298:17: 298:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:298 f1 = s4.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:298:33: 298:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:302:17: 305:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:302 r1 = r2.wrapping_add(s7 ^ match r1 & 0x01 {
src/sosemanuk.rs:303 0 => 0,
src/sosemanuk.rs:304 _ => s4
src/sosemanuk.rs:305 });
src/sosemanuk.rs:305:11: 305:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:306:42: 306:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:306 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:306:56: 306:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:306:17: 306:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:306 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:306:41: 306:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:310:17: 310:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:310 f2 = s5.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:310:33: 310:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:314:17: 317:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:314 r1 = r2.wrapping_add(s8 ^ match r1 & 0x01 {
src/sosemanuk.rs:315 0 => 0,
src/sosemanuk.rs:316 _ => s5
src/sosemanuk.rs:317 });
src/sosemanuk.rs:317:11: 317:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:318:42: 318:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:318 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:318:56: 318:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:318:17: 318:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:318 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:318:41: 318:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:322:17: 322:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:322 f3 = s6.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:322:33: 322:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:352:17: 355:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:352 r1 = r2.wrapping_add(s9 ^ match r1 & 0x01 {
src/sosemanuk.rs:353 0 => 0,
src/sosemanuk.rs:354 _ => s6
src/sosemanuk.rs:355 });
src/sosemanuk.rs:355:11: 355:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:356:42: 356:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:356 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:356:56: 356:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:356:17: 356:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:356 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:356:41: 356:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:360:17: 360:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:360 f0 = s7.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:360:33: 360:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:364:17: 367:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:364 r1 = r2.wrapping_add(s0 ^ match r1 & 0x01 {
src/sosemanuk.rs:365 0 => 0,
src/sosemanuk.rs:366 _ => s7
src/sosemanuk.rs:367 });
src/sosemanuk.rs:367:11: 367:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:368:42: 368:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:368 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:368:56: 368:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:368:17: 368:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:368 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:368:41: 368:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:372:17: 372:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:372 f1 = s8.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:372:33: 372:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:376:17: 379:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:376 r1 = r2.wrapping_add(s1 ^ match r1 & 0x01 {
src/sosemanuk.rs:377 0 => 0,
src/sosemanuk.rs:378 _ => s8
src/sosemanuk.rs:379 });
src/sosemanuk.rs:379:11: 379:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:380:42: 380:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:380 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:380:56: 380:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:380:17: 380:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:380 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:380:41: 380:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:384:17: 384:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:384 f2 = s9.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:384:33: 384:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:388:17: 391:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:388 r1 = r2.wrapping_add(s2 ^ match r1 & 0x01 {
src/sosemanuk.rs:389 0 => 0,
src/sosemanuk.rs:390 _ => s9
src/sosemanuk.rs:391 });
src/sosemanuk.rs:391:11: 391:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:392:42: 392:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:392 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:392:56: 392:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:392:17: 392:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:392 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:392:41: 392:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:396:17: 396:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:396 f3 = s0.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:396:33: 396:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:426:17: 429:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:426 r1 = r2.wrapping_add(s3 ^ match r1 & 0x01 {
src/sosemanuk.rs:427 0 => 0,
src/sosemanuk.rs:428 _ => s0
src/sosemanuk.rs:429 });
src/sosemanuk.rs:429:11: 429:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:430:42: 430:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:430 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:430:56: 430:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:430:17: 430:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:430 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:430:41: 430:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:434:17: 434:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:434 f0 = s1.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:434:33: 434:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:438:17: 441:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:438 r1 = r2.wrapping_add(s4 ^ match r1 & 0x01 {
src/sosemanuk.rs:439 0 => 0,
src/sosemanuk.rs:440 _ => s1
src/sosemanuk.rs:441 });
src/sosemanuk.rs:441:11: 441:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:442:42: 442:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:442 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:442:56: 442:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:442:17: 442:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:442 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:442:41: 442:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:446:17: 446:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:446 f1 = s2.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:446:33: 446:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:450:17: 453:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:450 r1 = r2.wrapping_add(s5 ^ match r1 & 0x01 {
src/sosemanuk.rs:451 0 => 0,
src/sosemanuk.rs:452 _ => s2
src/sosemanuk.rs:453 });
src/sosemanuk.rs:453:11: 453:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:454:42: 454:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:454 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:454:56: 454:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:454:17: 454:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:454 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:454:41: 454:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:458:17: 458:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:458 f2 = s3.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:458:33: 458:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:462:17: 465:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:462 r1 = r2.wrapping_add(s6 ^ match r1 & 0x01 {
src/sosemanuk.rs:463 0 => 0,
src/sosemanuk.rs:464 _ => s3
src/sosemanuk.rs:465 });
src/sosemanuk.rs:465:11: 465:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:466:42: 466:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:466 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:466:56: 466:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:466:17: 466:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:466 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:466:41: 466:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:470:17: 470:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:470 f3 = s4.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:470:33: 470:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:500:17: 503:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:500 r1 = r2.wrapping_add(s7 ^ match r1 & 0x01 {
src/sosemanuk.rs:501 0 => 0,
src/sosemanuk.rs:502 _ => s4
src/sosemanuk.rs:503 });
src/sosemanuk.rs:503:11: 503:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:504:42: 504:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:504 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:504:56: 504:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:504:17: 504:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:504 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:504:41: 504:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:508:17: 508:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:508 f0 = s5.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:508:33: 508:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:512:17: 515:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:512 r1 = r2.wrapping_add(s8 ^ match r1 & 0x01 {
src/sosemanuk.rs:513 0 => 0,
src/sosemanuk.rs:514 _ => s5
src/sosemanuk.rs:515 });
src/sosemanuk.rs:515:11: 515:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:516:42: 516:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:516 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:516:56: 516:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:516:17: 516:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:516 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:516:41: 516:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:520:17: 520:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:520 f1 = s6.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:520:33: 520:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:524:17: 527:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:524 r1 = r2.wrapping_add(s9 ^ match r1 & 0x01 {
src/sosemanuk.rs:525 0 => 0,
src/sosemanuk.rs:526 _ => s6
src/sosemanuk.rs:527 });
src/sosemanuk.rs:527:11: 527:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:528:42: 528:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:528 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:528:56: 528:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:528:17: 528:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:528 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:528:41: 528:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:532:17: 532:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:532 f2 = s7.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:532:33: 532:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:536:17: 539:11 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:536 r1 = r2.wrapping_add(s0 ^ match r1 & 0x01 {
src/sosemanuk.rs:537 0 => 0,
src/sosemanuk.rs:538 _ => s7
src/sosemanuk.rs:539 });
src/sosemanuk.rs:539:11: 539:11 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:540:42: 540:56 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:540 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~
src/sosemanuk.rs:540:56: 540:56 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:540:17: 540:41 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:540 r2 = tt.wrapping_mul(0x54655307).rotate_left(7) as u32;
^~~~~~~~~~~~~~~~~~~~~~~~
src/sosemanuk.rs:540:41: 540:41 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:544:17: 544:33 warning: use of unstable library feature 'core': may be removed or relocated
src/sosemanuk.rs:544 f3 = s8.wrapping_add(r1) ^ r2;
^~~~~~~~~~~~~~~~
src/sosemanuk.rs:544:33: 544:33 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:601:9: 601:20 warning: use of unstable library feature 'core': needs review
src/sosemanuk.rs:601 copy_memory(&mut full_key[0..key.len()], &key);
^~~~~~~~~~~
src/sosemanuk.rs:601:20: 601:20 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:604:9: 604:20 warning: use of unstable library feature 'core': needs review
src/sosemanuk.rs:604 copy_memory(&mut full_key[0..32], &key[0..32]);
^~~~~~~~~~~
src/sosemanuk.rs:604:20: 604:20 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:624:13: 624:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:624 w0 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:624:28: 624:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:626:13: 626:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:626 w1 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:626:28: 626:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:628:13: 628:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:628 w2 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:628:28: 628:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:630:13: 630:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:630 w3 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:630:28: 630:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:659:13: 659:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:659 w4 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:659:28: 659:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:661:13: 661:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:661 w5 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:661:28: 661:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:663:13: 663:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:663 w6 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:663:28: 663:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:665:13: 665:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:665 w7 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:665:28: 665:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:691:13: 691:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:691 w0 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:691:28: 691:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:693:13: 693:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:693 w1 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:693:28: 693:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:695:13: 695:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:695 w2 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:695:28: 695:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:697:13: 697:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:697 w3 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:697:28: 697:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:725:13: 725:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:725 w4 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:725:28: 725:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:727:13: 727:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:727 w5 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:727:28: 727:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:729:13: 729:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:729 w6 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:729:28: 729:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:731:13: 731:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:731 w7 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:731:28: 731:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:759:13: 759:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:759 w0 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:759:28: 759:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:761:13: 761:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:761 w1 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:761:28: 761:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:763:13: 763:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:763 w2 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:763:28: 763:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:765:13: 765:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:765 w3 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:765:28: 765:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:795:13: 795:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:795 w4 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:795:28: 795:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:797:13: 797:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:797 w5 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:797:28: 797:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:799:13: 799:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:799 w6 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:799:28: 799:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:801:13: 801:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:801 w7 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:801:28: 801:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:829:13: 829:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:829 w0 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:829:28: 829:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:831:13: 831:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:831 w1 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:831:28: 831:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:833:13: 833:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:833 w2 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:833:28: 833:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:835:13: 835:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:835 w3 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:835:28: 835:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:864:13: 864:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:864 w4 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:864:28: 864:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:866:13: 866:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:866 w5 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:866:28: 866:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:868:13: 868:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:868 w6 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:868:28: 868:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:870:13: 870:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:870 w7 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:870:28: 870:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:900:13: 900:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:900 w0 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:900:28: 900:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:902:13: 902:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:902 w1 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:902:28: 902:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:904:13: 904:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:904 w2 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:904:28: 904:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:906:13: 906:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:906 w3 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:906:28: 906:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:935:13: 935:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:935 w4 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:935:28: 935:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:937:13: 937:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:937 w5 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:937:28: 937:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:939:13: 939:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:939 w6 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:939:28: 939:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:941:13: 941:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:941 w7 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:941:28: 941:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:967:13: 967:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:967 w0 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:967:28: 967:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:969:13: 969:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:969 w1 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:969:28: 969:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:971:13: 971:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:971 w2 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:971:28: 971:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:973:13: 973:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:973 w3 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:973:28: 973:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1001:13: 1001:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1001 w4 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1001:28: 1001:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1003:13: 1003:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1003 w5 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1003:28: 1003:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1005:13: 1005:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1005 w6 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1005:28: 1005:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1007:13: 1007:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1007 w7 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1007:28: 1007:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1035:13: 1035:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1035 w0 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1035:28: 1035:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1037:13: 1037:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1037 w1 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1037:28: 1037:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1039:13: 1039:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1039 w2 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1039:28: 1039:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1041:13: 1041:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1041 w3 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1041:28: 1041:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1071:13: 1071:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1071 w4 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1071:28: 1071:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1073:13: 1073:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1073 w5 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1073:28: 1073:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1075:13: 1075:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1075 w6 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1075:28: 1075:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1077:13: 1077:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1077 w7 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1077:28: 1077:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1105:13: 1105:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1105 w0 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1105:28: 1105:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1107:13: 1107:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1107 w1 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1107:28: 1107:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1109:13: 1109:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1109 w2 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1109:28: 1109:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1111:13: 1111:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1111 w3 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1111:28: 1111:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1140:13: 1140:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1140 w4 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1140:28: 1140:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1142:13: 1142:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1142 w5 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1142:28: 1142:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1144:13: 1144:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1144 w6 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1144:28: 1144:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1146:13: 1146:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1146 w7 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1146:28: 1146:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1176:13: 1176:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1176 w0 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1176:28: 1176:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1178:13: 1178:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1178 w1 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1178:28: 1178:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1180:13: 1180:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1180 w2 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1180:28: 1180:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1182:13: 1182:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1182 w3 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1182:28: 1182:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1211:13: 1211:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1211 w4 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1211:28: 1211:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1213:13: 1213:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1213 w5 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1213:28: 1213:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1215:13: 1215:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1215 w6 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1215:28: 1215:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1217:13: 1217:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1217 w7 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1217:28: 1217:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1243:13: 1243:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1243 w0 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1243:28: 1243:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1245:13: 1245:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1245 w1 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1245:28: 1245:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1247:13: 1247:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1247 w2 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1247:28: 1247:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1249:13: 1249:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1249 w3 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1249:28: 1249:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1277:13: 1277:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1277 w4 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1277:28: 1277:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1279:13: 1279:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1279 w5 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1279:28: 1279:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1281:13: 1281:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1281 w6 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1281:28: 1281:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1283:13: 1283:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1283 w7 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1283:28: 1283:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1311:13: 1311:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1311 w0 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1311:28: 1311:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1313:13: 1313:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1313 w1 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1313:28: 1313:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1315:13: 1315:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1315 w2 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1315:28: 1315:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1317:13: 1317:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1317 w3 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1317:28: 1317:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1347:13: 1347:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1347 w4 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1347:28: 1347:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1349:13: 1349:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1349 w5 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1349:28: 1349:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1351:13: 1351:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1351 w6 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1351:28: 1351:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1353:13: 1353:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1353 w7 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1353:28: 1353:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1381:13: 1381:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1381 w0 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1381:28: 1381:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1383:13: 1383:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1383 w1 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1383:28: 1383:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1385:13: 1385:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1385 w2 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1385:28: 1385:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1387:13: 1387:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1387 w3 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1387:28: 1387:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1416:13: 1416:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1416 w4 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1416:28: 1416:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1418:13: 1418:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1418 w5 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1418:28: 1418:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1420:13: 1420:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1420 w6 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1420:28: 1420:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1422:13: 1422:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1422 w7 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1422:28: 1422:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1452:13: 1452:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1452 w0 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1452:28: 1452:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1454:13: 1454:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1454 w1 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1454:28: 1454:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1456:13: 1456:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1456 w2 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1456:28: 1456:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1458:13: 1458:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1458 w3 = tt.rotate_left(11);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1458:28: 1458:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1491:9: 1491:20 warning: use of unstable library feature 'core': needs review
src/sosemanuk.rs:1491 copy_memory(&mut nonce[0..iv.len()], &iv);
^~~~~~~~~~~
src/sosemanuk.rs:1491:20: 1491:20 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1493:9: 1493:20 warning: use of unstable library feature 'core': needs review
src/sosemanuk.rs:1493 copy_memory(&mut nonce[0..16], &iv[0..16]);
^~~~~~~~~~~
src/sosemanuk.rs:1493:20: 1493:20 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1528:13: 1528:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1528 r1 = r1.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1528:28: 1528:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1529:13: 1529:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1529 r2 = r2.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1529:27: 1529:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1532:13: 1532:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1532 r4 = r4.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1532:27: 1532:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1533:13: 1533:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1533 r0 = r0.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1533:27: 1533:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1536:13: 1536:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1536 r1 = r1.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1536:27: 1536:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1537:13: 1537:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1537 r2 = r2.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1537:28: 1537:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1560:13: 1560:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1560 r2 = r2.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1560:28: 1560:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1561:13: 1561:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1561 r0 = r0.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1561:27: 1561:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1564:13: 1564:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1564 r1 = r1.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1564:27: 1564:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1565:13: 1565:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1565 r4 = r4.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1565:27: 1565:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1568:13: 1568:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1568 r2 = r2.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1568:27: 1568:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1569:13: 1569:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1569 r0 = r0.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1569:28: 1569:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1590:13: 1590:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1590 r0 = r0.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1590:28: 1590:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1591:13: 1591:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1591 r1 = r1.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1591:27: 1591:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1594:13: 1594:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1594 r4 = r4.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1594:27: 1594:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1595:13: 1595:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1595 r3 = r3.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1595:27: 1595:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1598:13: 1598:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1598 r0 = r0.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1598:27: 1598:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1599:13: 1599:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1599 r1 = r1.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1599:28: 1599:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1623:13: 1623:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1623 r4 = r4.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1623:28: 1623:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1624:13: 1624:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1624 r3 = r3.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1624:27: 1624:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1627:13: 1627:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1627 r1 = r1.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1627:27: 1627:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1628:13: 1628:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1628 r2 = r2.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1628:27: 1628:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1631:13: 1631:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1631 r4 = r4.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1631:27: 1631:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1632:13: 1632:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1632 r3 = r3.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1632:28: 1632:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1657:13: 1657:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1657 r1 = r1.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1657:28: 1657:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1658:13: 1658:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1658 r4 = r4.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1658:27: 1658:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1661:13: 1661:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1661 r0 = r0.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1661:27: 1661:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1662:13: 1662:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1662 r2 = r2.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1662:27: 1662:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1665:13: 1665:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1665 r1 = r1.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1665:27: 1665:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1666:13: 1666:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1666 r4 = r4.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1666:28: 1666:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1690:13: 1690:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1690 r0 = r0.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1690:28: 1690:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1691:13: 1691:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1691 r1 = r1.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1691:27: 1691:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1694:13: 1694:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1694 r2 = r2.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1694:27: 1694:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1695:13: 1695:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1695 r4 = r4.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1695:27: 1695:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1698:13: 1698:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1698 r0 = r0.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1698:27: 1698:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1699:13: 1699:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1699 r1 = r1.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1699:28: 1699:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1722:13: 1722:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1722 r0 = r0.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1722:28: 1722:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1723:13: 1723:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1723 r3 = r3.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1723:27: 1723:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1726:13: 1726:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1726 r2 = r2.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1726:27: 1726:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1727:13: 1727:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1727 r1 = r1.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1727:27: 1727:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1730:13: 1730:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1730 r0 = r0.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1730:27: 1730:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1731:13: 1731:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1731 r3 = r3.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1731:28: 1731:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1756:13: 1756:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1756 r4 = r4.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1756:28: 1756:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1757:13: 1757:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1757 r2 = r2.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1757:27: 1757:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1760:13: 1760:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1760 r1 = r1.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1760:27: 1760:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1761:13: 1761:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1761 r0 = r0.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1761:27: 1761:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1764:13: 1764:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1764 r4 = r4.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1764:27: 1764:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1765:13: 1765:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1765 r2 = r2.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1765:28: 1765:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1788:13: 1788:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1788 r1 = r1.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1788:28: 1788:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1789:13: 1789:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1789 r2 = r2.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1789:27: 1789:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1792:13: 1792:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1792 r3 = r3.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1792:27: 1792:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1793:13: 1793:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1793 r4 = r4.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1793:27: 1793:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1796:13: 1796:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1796 r1 = r1.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1796:27: 1796:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1797:13: 1797:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1797 r2 = r2.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1797:28: 1797:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1820:13: 1820:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1820 r2 = r2.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1820:28: 1820:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1821:13: 1821:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1821 r4 = r4.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1821:27: 1821:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1824:13: 1824:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1824 r1 = r1.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1824:27: 1824:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1825:13: 1825:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1825 r3 = r3.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1825:27: 1825:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1828:13: 1828:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1828 r2 = r2.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1828:27: 1828:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1829:13: 1829:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1829 r4 = r4.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1829:28: 1829:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1850:13: 1850:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1850 r4 = r4.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1850:28: 1850:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1851:13: 1851:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1851 r1 = r1.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1851:27: 1851:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1854:13: 1854:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1854 r3 = r3.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1854:27: 1854:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1855:13: 1855:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1855 r0 = r0.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1855:27: 1855:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1858:13: 1858:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1858 r4 = r4.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1858:27: 1858:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1859:13: 1859:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1859 r1 = r1.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1859:28: 1859:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1883:13: 1883:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1883 r3 = r3.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1883:28: 1883:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1884:13: 1884:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1884 r0 = r0.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1884:27: 1884:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1887:13: 1887:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1887 r1 = r1.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1887:27: 1887:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1888:13: 1888:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1888 r2 = r2.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1888:27: 1888:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1891:13: 1891:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1891 r3 = r3.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1891:27: 1891:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1892:13: 1892:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1892 r0 = r0.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1892:28: 1892:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1921:13: 1921:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1921 r1 = r1.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1921:28: 1921:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1922:13: 1922:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1922 r3 = r3.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1922:27: 1922:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1925:13: 1925:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1925 r4 = r4.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1925:27: 1925:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1926:13: 1926:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1926 r2 = r2.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1926:27: 1926:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1929:13: 1929:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1929 r1 = r1.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1929:27: 1929:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1930:13: 1930:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1930 r3 = r3.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1930:28: 1930:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1954:13: 1954:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1954 r4 = r4.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1954:28: 1954:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1955:13: 1955:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1955 r1 = r1.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1955:27: 1955:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1958:13: 1958:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1958 r2 = r2.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1958:27: 1958:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1959:13: 1959:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1959 r3 = r3.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1959:27: 1959:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1962:13: 1962:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1962 r4 = r4.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1962:27: 1962:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1963:13: 1963:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1963 r1 = r1.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1963:28: 1963:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1986:13: 1986:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1986 r4 = r4.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1986:28: 1986:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1987:13: 1987:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1987 r0 = r0.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1987:27: 1987:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1990:13: 1990:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1990 r2 = r2.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1990:27: 1990:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1991:13: 1991:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1991 r1 = r1.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1991:27: 1991:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1994:13: 1994:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1994 r4 = r4.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:1994:27: 1994:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:1995:13: 1995:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:1995 r0 = r0.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:1995:28: 1995:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2020:13: 2020:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2020 r3 = r3.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2020:28: 2020:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2021:13: 2021:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2021 r2 = r2.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2021:27: 2021:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2024:13: 2024:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2024 r1 = r1.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2024:27: 2024:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2025:13: 2025:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2025 r4 = r4.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2025:27: 2025:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2028:13: 2028:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2028 r3 = r3.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2028:27: 2028:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2029:13: 2029:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2029 r2 = r2.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2029:28: 2029:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2052:13: 2052:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2052 r1 = r1.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2052:28: 2052:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2053:13: 2053:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2053 r2 = r2.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2053:27: 2053:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2056:13: 2056:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2056 r0 = r0.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2056:27: 2056:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2057:13: 2057:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2057 r3 = r3.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2057:27: 2057:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2060:13: 2060:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2060 r1 = r1.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2060:27: 2060:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2061:13: 2061:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2061 r2 = r2.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2061:28: 2061:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2084:13: 2084:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2084 r2 = r2.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2084:28: 2084:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2085:13: 2085:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2085 r3 = r3.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2085:27: 2085:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2088:13: 2088:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2088 r1 = r1.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2088:27: 2088:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2089:13: 2089:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2089 r0 = r0.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2089:27: 2089:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2092:13: 2092:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2092 r2 = r2.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2092:27: 2092:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2093:13: 2093:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2093 r3 = r3.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2093:28: 2093:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2118:13: 2118:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2118 r3 = r3.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2118:28: 2118:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2119:13: 2119:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2119 r1 = r1.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2119:27: 2119:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2122:13: 2122:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2122 r0 = r0.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2122:27: 2122:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2123:13: 2123:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2123 r4 = r4.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2123:27: 2123:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2126:13: 2126:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2126 r3 = r3.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2126:27: 2126:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2127:13: 2127:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2127 r1 = r1.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2127:28: 2127:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2151:13: 2151:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2151 r0 = r0.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2151:28: 2151:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2152:13: 2152:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2152 r4 = r4.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2152:27: 2152:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2155:13: 2155:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2155 r1 = r1.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2155:27: 2155:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2156:13: 2156:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2156 r2 = r2.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2156:27: 2156:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2159:13: 2159:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2159 r0 = r0.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2159:27: 2159:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2160:13: 2160:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2160 r4 = r4.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2160:28: 2160:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2185:13: 2185:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2185 r1 = r1.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2185:28: 2185:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2186:13: 2186:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2186 r0 = r0.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2186:27: 2186:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2189:13: 2189:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2189 r3 = r3.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2189:27: 2189:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2190:13: 2190:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2190 r2 = r2.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2190:27: 2190:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2193:13: 2193:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2193 r1 = r1.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2193:27: 2193:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2194:13: 2194:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2194 r0 = r0.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2194:28: 2194:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2218:13: 2218:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2218 r3 = r3.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2218:28: 2218:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2219:13: 2219:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2219 r1 = r1.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2219:27: 2219:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2222:13: 2222:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2222 r2 = r2.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2222:27: 2222:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2223:13: 2223:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2223 r0 = r0.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2223:27: 2223:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2226:13: 2226:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2226 r3 = r3.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2226:27: 2226:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2227:13: 2227:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2227 r1 = r1.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2227:28: 2227:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2250:13: 2250:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2250 r3 = r3.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2250:28: 2250:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2251:13: 2251:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2251 r4 = r4.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2251:27: 2251:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2254:13: 2254:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2254 r2 = r2.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2254:27: 2254:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2255:13: 2255:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2255 r1 = r1.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2255:27: 2255:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2258:13: 2258:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2258 r3 = r3.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2258:27: 2258:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2259:13: 2259:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2259 r4 = r4.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2259:28: 2259:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2284:13: 2284:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2284 r0 = r0.rotate_left(13);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2284:28: 2284:28 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2285:13: 2285:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2285 r2 = r2.rotate_left(3);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2285:27: 2285:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2288:13: 2288:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2288 r1 = r1.rotate_left(1);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2288:27: 2288:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2289:13: 2289:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2289 r3 = r3.rotate_left(7);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2289:27: 2289:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2292:13: 2292:27 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2292 r0 = r0.rotate_left(5);
^~~~~~~~~~~~~~
src/sosemanuk.rs:2292:27: 2292:27 help: add #![feature(core)] to the crate attributes to silence this warning
src/sosemanuk.rs:2293:13: 2293:28 warning: use of unstable library feature 'core': pending integer conventions
src/sosemanuk.rs:2293 r2 = r2.rotate_left(22);
^~~~~~~~~~~~~~~
src/sosemanuk.rs:2293:28: 2293:28 help: add #![feature(core)] to the crate attributes to silence this warning