upstream: github.com/robur-coop/kdf
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis:
4 "Key Derivation Functions: HKDF RFC 5869, PBKDF RFC 2898, SCRYPT RFC 7914"
5description:
6 "A pure OCaml implementation of scrypt (RFC 7914), PBKDF 1 and 2 as defined by PKCS#5 (RFC 2898), and HKDF (RFC 5869)."
7maintainer: [
8 "Alfredo Beaumont <alfredo.beaumont@gmail.com>"
9 "Hannes Mehnert <hannes@mehnert.org>"
10]
11authors: [
12 "Alfredo Beaumont <alfredo.beaumont@gmail.com>"
13 "Sonia Meruelo <smeruelo@gmail.com>"
14 "Hannes Mehnert <hannes@mehnert.org>"
15]
16license: "BSD-2-Clause"
17tags: ["org:blacksun" "crypto"]
18homepage: "https://tangled.org/gazagnaire.org/kdf"
19doc: "https://tangled.org/gazagnaire.org/kdf"
20bug-reports: "https://tangled.org/gazagnaire.org/kdf/issues"
21depends: [
22 "ocaml" {>= "4.13.0"}
23 "dune" {>= "3.21" & >= "1.8.0"}
24 "digestif" {>= "1.2.0"}
25 "nox-crypto" {>= "1.0.0"}
26 "alcotest" {with-test & >= "0.8.1"}
27 "mdx" {with-test}
28 "ohex" {with-test & >= "0.2.0"}
29 "odoc" {with-doc}
30]
31build: [
32 ["dune" "subst"] {dev}
33 [
34 "dune"
35 "build"
36 "-p"
37 name
38 "-j"
39 jobs
40 "@install"
41 "@runtest" {with-test}
42 "@doc" {with-doc}
43 ]
44]
45dev-repo: "git+https://tangled.org/gazagnaire.org/kdf"
46x-maintenance-intent: ["(latest)"]