this repo has no description
at main 1.4 kB view raw
1opam-version: "2.0" 2maintainer: "Yoichi Hirai <i@yoichihirai.com>" 3authors: "Yoichi Hirai <i@yoichihirai.com>" 4homepage: "https://github.com/pirapira/rlp-ocaml" 5bug-reports: "https://github.com/pirapira/rlp-ocaml/issues/new" 6license: "Apache-2.0" 7dev-repo: "git+https://github.com/pirapira/rlp-ocaml.git" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 10 ["ocaml" "setup.ml" "-build"] 11 ["ocaml" "setup.ml" "-doc"] 12] 13install: ["ocaml" "setup.ml" "-install"] 14remove: ["ocaml" "setup.ml" "-uninstall"] 15depends: [ 16 "ocaml" {< "5.0"} 17 "ocamlbuild" {build} 18 "ocamlfind" {build} 19 "ounit" 20 "rope" 21 "hex" 22 "num" 23] 24synopsis: "RLP: Recursive Length Prefix Encoding" 25description: """ 26RLP(*1) is a way to encode multi-way trees as byte strings. This library provides an encode and a decode function. 27A tree's node can be a byte string or a node with arbitrarily many child nodes. A node can also have zero nodes. 28Equivalently, this library can serialize s-expressions whose atoms are byte string literals. 29 30RLP is heavily used in the Ethereum protocol(*2), but might be useful elsewhere as well. 31 32*1: https://github.com/ethereum/wiki/wiki/RLP 33*2: https://ethereum.org/""" 34url { 35 src: "https://github.com/pirapira/rlp-ocaml/archive/0.1.tar.gz" 36 checksum: [ 37 "sha256=5e5131d7b00d67e62dfbc6f0d76648f32dca42e1fbbfd2572094cedb45932ccb" 38 "md5=4b1b75a8cc60fd2e742c36107e3fa41c" 39 ] 40}