From a3094b7e69ff2b7a967cc469a8a73b474c9ba29d Mon Sep 17 00:00:00 2001 From: Patrick Ferris Date: Sun, 23 Oct 2022 22:14:46 +0100 Subject: [PATCH] [new release] multibase (0.1.0) (#22344) * [new release] multibase (0.1.0) CHANGES: - Initial public release * Add lower bound on optint for multibase * Add lower bound to base64 --- packages/multibase/multibase.0.1.0/opam | 44 +++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 packages/multibase/multibase.0.1.0/opam diff --git a/packages/multibase/multibase.0.1.0/opam b/packages/multibase/multibase.0.1.0/opam new file mode 100644 index 00000000000..5164b3edfe7 --- /dev/null +++ b/packages/multibase/multibase.0.1.0/opam @@ -0,0 +1,44 @@ +opam-version: "2.0" +synopsis: "Self-describing base encodings" +description: + "This library provides self-describing base encodings include Base32, Base58 and Base64" +maintainer: ["patrick@sirref.org"] +authors: ["patrick@sirref.org"] +license: "MIT" +homepage: "https://github.com/patricoferris/ocaml-multibase" +bug-reports: "https://github.com/patricoferris/ocaml-multibase/issues" +depends: [ + "ocaml" {>= "4.08.0"} + "dune" {>= "2.9"} + "alcotest" {with-test} + "mdx" {with-test} + "base64" {>= "3.5.0"} + "optint" {>= "0.1.0"} + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "--promote-install-files=false" + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] + ["dune" "install" "-p" name "--create-install-files" name] +] +dev-repo: "git+https://github.com/patricoferris/ocaml-multibase.git" +url { + src: + "https://github.com/patricoferris/ocaml-multibase/releases/download/v0.1.0/multibase-0.1.0.tbz" + checksum: [ + "sha256=b46509dd92fef15d2b78a4c831fa7c2caeef17e454f621711a2700dd82a15a95" + "sha512=28fcd03934e4de642bf1afaff9cb1e2563345b014601dcbb3e2bfefae8b88b2cda9c738e970bf339bd87bcab7b0b26cfc89bd71585a6ade00ac7ac0a7d92b504" + ] +} +x-commit-hash: "f235f74109b007609a599f1ce877c267c9f695d5"