proto: remove incorrect feature guard

`HashedConnectionIdGenerator::new()` uses the mandatory rand crate to
generate a key by default, not the *ring* crate.
This commit is contained in:
Dirkjan Ochtman
2024-05-03 16:49:42 +02:00
committed by Benjamin Saunders
parent 7af5296dc3
commit e764fe48ce
-1
View File
@@ -125,7 +125,6 @@ impl HashedConnectionIdGenerator {
}
}
#[cfg(feature = "ring")]
impl Default for HashedConnectionIdGenerator {
fn default() -> Self {
Self::new()