this repo has no description
1opam-version: "2.0" 2homepage: "https://github.com/abeaumont/ocaml-salsa20-core" 3dev-repo: "git+https://github.com/abeaumont/ocaml-salsa20-core.git" 4bug-reports: "https://github.com/abeaumont/ocaml-salsa20-core/issues" 5doc: "https://abeaumont.github.io/ocaml-salsa20-core/" 6authors: "Alfredo Beaumont <alfredo.beaumont@gmail.com>" 7maintainer: "Alfredo Beaumont <alfredo.beaumont@gmail.com>" 8license: "BSD-2-Clause" 9 10build: [ 11 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14 ["dune" "build" "-p" name "@doc"] {with-doc} 15] 16depends: [ 17 "dune" {>= "1.3.0"} 18 "ocaml" {>= "4.02.0"} 19 "alcotest" {with-test} 20 "ohex" {with-test} 21] 22synopsis: "The Salsa20 core functions, in OCaml" 23description: """ 24An OCaml implementation of [Salsa20 Core](http://cr.yp.to/salsa20.html) functions, both Salsa20/20 Core and the reduced Salsa20/8 Core and Salsa20/12 Core functions. 25The hot loop is implemented in C for efficiency reasons. 26""" 27url { 28 src: 29 "https://github.com/abeaumont/ocaml-salsa20-core/archive/refs/tags/2.0.0.tar.gz" 30 checksum: [ 31 "md5=ee701612460d97d0dc3ca615af3ef5cb" 32 "sha512=9f413abcd15be97b3ad39efea1557e4a6b80892fbe89796298fcae5207d9f894d824ee602459e43eda07fd2875bdd90ad4c0e2a87c8cfa4ecef83ae31b4a5136" 33 ] 34}