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]
15depends: [
16 "conf-pkg-config" {build}
17 "dune" {>= "1.3.0"}
18 "cstruct" {>= "6.0.0"}
19 "ocaml" {>= "4.02.0"}
20 "alcotest" {with-test}
21]
22depopts: [
23 "ocaml-freestanding"
24 "mirage-xen-posix"
25]
26conflicts: [
27 "mirage-xen-posix" {<"3.1.0"}
28 "ocaml-freestanding" {< "0.4.1"}
29]
30synopsis: "The Salsa20 core functions, in OCaml"
31description: """
32An 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.
33The hot loop is implemented in C for efficiency reasons.
34"""
35url {
36 src: "https://github.com/abeaumont/ocaml-salsa20-core/archive/1.1.0.tar.gz"
37 checksum: [
38 "md5=176ad572923a6fb22160c376a5300a83"
39 "sha512=c10b673774d4379600bb09860827820bce1fd6efd4f33bfaa9184e5b623640ab37ad717e2330c5a7f418fb1ac89a8a3bc3650e95f1d0469acac593b6e3e378d1"
40 ]
41}