this repo has no description
1opam-version: "2.0" 2synopsis: "Integer compression and decompression module" 3description: 4 "Simple63 implements a module for compression and decompression of 5 non-negative integer sequences. It is similar to the Simple-8b 6 technique, adapted to work with OCaml's 63-bit integers." 7maintainer: ["mika@illouz.net"] 8authors: ["Mika Illouz"] 9license: "BSD" 10homepage: "https://github.com/barko/simple63" 11doc: "https://barko.github.io/simple63/" 12bug-reports: "https://github.com/barko/simple63/issues" 13depends: [ 14 "dune" {> "2.6"} 15 "ocaml" {>= "4.08.0"} 16 "ppx_inline_test" 17] 18build: [ 19 ["dune" "subst"] {dev} 20 [ 21 "dune" 22 "build" 23 "-p" 24 name 25 "-j" 26 jobs 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31] 32 33dev-repo: "git+https://github.com/barko/simple63.git" 34x-commit-hash: "8c2881528ac6161a0f61deb8690b8c8ff4216e89" 35url { 36 src: 37 "https://github.com/barko/simple63/releases/download/v1/simple63-v1.tbz" 38 checksum: [ 39 "sha256=7c5393ecea953a18a42fdb5cf16bc082a51a0d99e9c19209f2512526c28b5fe2" 40 "sha512=eb2fff2bd7f6433382cb70e46539defb6cdafc66fb8293e799fbbecfa47ccdb3fa740aff787237507282d617386b88374d67836b4c3f72d9e3d0c497d1cf1aef" 41 ] 42}