this repo has no description
1opam-version: "2.0"
2synopsis: "Functional Red-Black Tree"
3description: "Functional Red-Black Tree in OCaml"
4maintainer: "Andrew Baine <andrew.baine@gmail.com>"
5authors: "Andrew Baine"
6license: "MIT"
7homepage: "https://github.com/andrewbaine/rbtree"
8bug-reports: "https://github.com/andrewbaine/rbtree/issues"
9depends: [
10 "dune" {>= "3.16"}
11 "ocaml" {>= "4.14.0"}
12 "melange" {>= "4.0.0"}
13 "alcotest" {with-test}
14 "core" {with-test}
15 "melange-jest" {with-test}
16 "merlin" {with-dev-setup}
17 "ocaml-lsp-server" {with-dev-setup}
18 "ocamlformat" {with-dev-setup}
19 "odoc" {with-doc}
20]
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "@install"
31 "@runtest" {with-test}
32 "@doc" {with-doc}
33 ]
34]
35dev-repo: "git+https://github.com/andrewbaine/rbtree.git"
36url {
37 src:
38 "https://github.com/andrewbaine/rbtree/archive/refs/tags/v1.0.5.tar.gz"
39 checksum: [
40 "md5=9bf8cd113df9cf7e0011c93b3f2a98ca"
41 "sha512=8b12a93c409a47f5418406e17a615d52d559e1be7c6ac6afbeecdf8d1d0f033b94ef5247a84a86514cad4ad71b45e104ba5863a7b602893c7f1fc78a2cffe751"
42 ]
43}