Pure OCaml xxhash implementation
at main 19 lines 551 B view raw
1(lang dune 3.21) 2(name mlxxhash) 3 4(generate_opam_files true) 5 6(license ISC) 7(authors "Anil Madhavapeddy <anil@recoil.org>") 8(maintainers "Anil Madhavapeddy <anil@recoil.org>") 9(source (tangled anil.recoil.org/ocaml-mlxxhash)) 10 11(package 12 (name mlxxhash) 13 (synopsis "Pure OCaml implementation of xxHash-64") 14 (description 15 "A pure OCaml implementation of the xxHash-64 non-cryptographic hash algorithm. 16Provides both one-shot and streaming APIs for hashing bytes and strings.") 17 (depends 18 (ocaml (>= 5.2.0)) 19 (alcotest (and :with-test (>= 1.7.0)))))