upstream: https://github.com/mirage/mirage-crypto
at main 32 lines 1.1 kB view raw
1opam-version: "2.0" 2homepage: "https://tangled.org/gazagnaire.org/ocaml-crypto" 3dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-crypto.git" 4bug-reports: "https://tangled.org/gazagnaire.org/ocaml-crypto/issues" 5authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ] 6maintainer: "Thomas Gazagnaire <thomas@gazagnaire.org>" 7license: "ISC" 8synopsis: "Simple symmetric cryptography (fork of mirage-crypto)" 9 10build: [ ["dune" "subst"] {dev} 11 ["dune" "build" "-p" name "-j" jobs ] 12 ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] 13 14depends: [ 15 "ocaml" {>= "4.13.0"} 16 "dune" {>= "2.7"} 17 "dune-configurator" {>= "2.0.0"} 18 "ounit2" {with-test} 19 "ohex" {with-test & >= "0.2.0"} 20 "eqaf" {>= "0.8"} 21] 22conflicts: [ 23 "ocaml-freestanding" 24 "result" {< "1.5"} 25] 26description: """ 27WARNING: This is an experimental fork of mirage-crypto. Do not use in production. 28Use mirage-crypto instead: https://github.com/mirage/mirage-crypto 29 30Crypto provides symmetric ciphers (DES, AES, RC4, ChaCha20/Poly1305). 31""" 32x-maintenance-intent: [ "(latest)" ]