this repo has no description
1opam-version: "2.0" 2synopsis: "Pretty Printing Binary Integers" 3description: """ 4Pretty Printing Binary Integers 5This library contains functions for pretty printing integers as 6unsigned binary integers. 7""" 8maintainer: ["Ifaz Kabir"] 9authors: ["Ifaz Kabir"] 10license: "CC0-1.0" 11tags: ["printf" "format" "boolean" "binary"] 12homepage: "https://github.com/ifazk/pp-binary-ints" 13doc: "https://ifazk.github.io/pp-binary-ints/" 14bug-reports: "https://github.com/ifazk/pp-binary-ints/issues" 15depends: [ 16 "dune" {>= "2.9"} 17 "ocaml" {>= "4.10"} 18 "ppx_inline_test" {with-test} 19 "odoc" {with-doc} 20] 21build: [ 22 ["dune" "subst"] {dev} 23 [ 24 "dune" 25 "build" 26 "-p" 27 name 28 "-j" 29 jobs 30 "--promote-install-files=false" 31 "@install" 32 "@runtest" {with-test} 33 "@doc" {with-doc} 34 ] 35 ["dune" "install" "-p" name "--create-install-files" name] 36] 37dev-repo: "git+https://github.com/ifazk/pp-binary-ints.git" 38url { 39 src: 40 "https://github.com/ifazk/pp-binary-ints/releases/download/0.1.1/pp-binary-ints-0.1.1.tbz" 41 checksum: [ 42 "sha256=199c232eab930f0c69bd5ed9d48236bee2dfb91184d173bfbace060b2adc81a1" 43 "sha512=2750927e7bd783f104147c6c877dc1eb2e0fa6a05de481bc42585536a8b71a42a496038dc5bd10dcc715c64c70d0573facfa0cbb49c4693db6ecb21c39fc73d9" 44 ] 45} 46x-commit-hash: "2fc82e815cf178c161f2f1b3b536787ec02e790e"