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"
5maintainer: "Alfredo Beaumont <alfredo.beaumont@gmail.com>"
6license: "BSD-2-Clause"
7
8build: [
9 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"]
10 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true"]
11 {with-test}
12 ["ocaml" "pkg/pkg.ml" "test"] {with-test}
13]
14depends: [
15 "ocaml" {>= "4.02.0"}
16 "ocamlfind" {build}
17 "ocamlbuild" {build}
18 "topkg" {build}
19 "cstruct" {>= "1.7.0" & < "6.0.1"}
20 "cstruct" {with-test & < "3.2.0"}
21 "nocrypto" {>= "0.5.3"}
22 "alcotest" {with-test}
23]
24synopsis: "Salsa20 core functions, in pure OCaml"
25description:
26 "A pure 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."
27authors: "Alfredo Beaumont <alfredo.beaumont@gmail.com>"
28url {
29 src: "https://github.com/abeaumont/ocaml-salsa20-core/archive/0.1.0.tar.gz"
30 checksum: [
31 "sha256=890a3fd58b0eb2dc9a60e6e37b2c81a6cd6f43e634f28345a6d3151cf8df2b96"
32 "md5=af18d92311544e8482f8447c50232a0b"
33 ]
34}