this repo has no description
1opam-version: "2.0" 2synopsis: "Elliptic curve library secp256k1 wrapper for Ocaml" 3description: """\ 4This library wrap the secp256k1 EC(DSA) library into an OCaml library. At the moment only a subset of functionalities are available: 5- Context: create, clone, destroy, randomize 6- Elliptic curve: public key creation 7- ECDSA: verify, sign, recover 8 9All exchanged data (pubkey, signature, seckey) are represented as hex strings.""" 10maintainer: "Davide Gessa <gessadavide@gmail.com>" 11authors: [ 12 "Davide Gessa <gessadavide@gmail.com>" 13 "Vincent Bernardoff <vb@luminar.eu.org>" 14 "Yoichi Hirai <i@yoichihirai.com>" 15 "Anton Trunov" 16] 17license: "MIT" 18homepage: "https://github.com/dakk/secp256k1-ml" 19bug-reports: "https://github.com/dakk/secp256k1-ml/issues" 20depends: [ 21 "ocaml" {< "5.0"} 22 "dune" {>= "1.0"} 23 "base" {build & >= "v0.12.0"} 24 "stdio" {build & >= "v0.9.0"} 25 "dune-configurator" {build & >= "1.0"} 26 "hex" {with-test & >= "1.1.1"} 27 "alcotest" {with-test & >= "0.8.1"} 28 "odoc" {with-test & >= "1.3.0"} 29 "base-bigarray" 30 "conf-secp256k1" 31] 32build: ["dune" "build" "-p" name "-j" jobs] 33dev-repo: "git+https://github.com/dakk/secp256k1-ml" 34url { 35 src: "https://github.com/dakk/secp256k1-ml/archive/refs/tags/0.4.4.zip" 36 checksum: [ 37 "md5=ca8faedd0ed878652f212874e1b263fb" 38 "sha512=73f1649cde4aa3afd75d1c14e97271851c6e9b1d3797fcef0ba015cb99f2854f727dcd6166c5d62d909b805da08530135468e80fddae5d21c6a54a3fc2a7ce69" 39 ] 40}