this repo has no description
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "CBOR library"
4description: """
5The Concise Binary Object Representation (CBOR), as
6 specified by RFC 8949, is a binary data serialization format. CBOR
7 is similar to JSON but serializes to binary which is smaller and
8 faster to generate and parse. This package provides an OCaml
9 implementation of CBOR."""
10maintainer: ["pukkamustard <pukkamustard@posteo.net>"]
11authors: ["pukkamustard <pukkamustard@posteo.net>"]
12license: "AGPL-3.0-or-later"
13homepage: "https://inqlab.net/git/ocaml-cborl.git"
14bug-reports: "mailto:pukkamustard@posteo.net"
15depends: [
16 "dune" {>= "3.2"}
17 "ocaml" {>= "4.14.0"}
18 "zarith" {>= "1.12"}
19 "fmt" {>= "0.8.7"}
20 "alcotest" {with-test}
21 "qcheck" {with-test}
22 "qcheck-alcotest" {with-test}
23 "odoc" {with-doc}
24]
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "@install"
35 "@runtest" {with-test}
36 "@doc" {with-doc}
37 ]
38]
39dev-repo: "git+https://inqlab.net/git/ocaml-cborl.git"
40url {
41 src: "https://github.com/ocaml/opam-source-archives/raw/main/cborl-0.1.0.tar.gz"
42 checksum: [
43 "md5=855106fd1a3bed94af232eb168a51fd0"
44 "sha256=b065f4fb7961b8f7fbcffe0ee1cd8c7cfdd447b200a81e908fee00e73096a1e5"
45 ]
46}