this repo has no description
1opam-version: "2.0" 2authors: "David Kaloper Meršinjak" 3maintainer: "David Kaloper Meršinjak <dk505@cam.ac.uk>" 4homepage: "https://github.com/mirleft/ocaml-asn1-combinators" 5doc: "https://mirleft.github.io/ocaml-asn1-combinators/doc" 6license: "ISC" 7dev-repo: "git+https://github.com/mirleft/ocaml-asn1-combinators.git" 8bug-reports: "https://github.com/mirleft/ocaml-asn1-combinators/issues" 9synopsis: "Embed typed ASN.1 grammars in OCaml" 10build: [ ["dune" "subst"] {dev} 11 ["dune" "build" "-p" name "-j" jobs ] 12 ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] 13depends: [ 14 "ocaml" {>= "4.05.0" & < "4.12.0"} 15 "dune" {>= "1.2.0"} 16 "cstruct" {>= "1.6.0" & < "6.0.0"} 17 "zarith" 18 "bigarray-compat" 19 "stdlib-shims" 20 "ptime" {< "0.8.6"} 21 "alcotest" {with-test} 22] 23description: """ 24asn1-combinators is a library for expressing ASN.1 in OCaml. Skip the notation 25part of ASN.1, and embed the abstract syntax directly in the language. These 26abstract syntax representations can be used for parsing, serialization, or 27random testing. 28 29The only ASN.1 encodings currently supported are BER and DER. 30""" 31url { 32 src: 33 "https://github.com/mirleft/ocaml-asn1-combinators/releases/download/v0.2.2/asn1-combinators-v0.2.2.tbz" 34 checksum: [ 35 "sha256=c9ebd5f9def090003918081cac680224eaefbf3def8aed8fe532b711a71d3631" 36 "sha512=199dda83814d7782183d67f9cdd6f5e8f036cbc1bcddec7ffd4adfd415ae024d1f7c720835eb173ab5e7455ed89acb99f88d0a30402c3edbfe6ca8a7182b217b" 37 ] 38}