just adler32, nothing else
use std::str::FromStr; use juxt_adler32::Adler32; fn main() { println!("{}", Adler32::from_str("juxt_adler32").unwrap()); }
adler32/rfc1950