#![no_std]usefhash::RandomState;usehashbrown::HashSet;fnmain(){let bytes =b"Hello, World!";// Input your own seed from any other source of randomness
letmut set:HashSet<&[u8], RandomState>=HashSet::with_hasher(RandomState::from(123));
set.insert(bytes);// Do stuff with set
}