this repo has no description
1opam-version: "2.0"
2synopsis: "A binary tree implementation"
3description:
4 "bin-tree is a OCaml library providing a simple binary tree implementation."
5maintainer: ["Bryan (Ahhj93)"]
6authors: ["Bryan (Ahhj93)"]
7license: "MIT"
8tags: ["binary_tree" "algorithm" "tree" "data_structure"]
9homepage: "https://github.com/Ahhj93/bin_tree"
10doc: "https://ahhj93.github.io/bin_tree/"
11bug-reports: "https://github.com/Ahhj93/bin_tree/issues"
12depends: [
13 "ocaml"
14 "dune" {>= "3.13"}
15 "odoc" {with-doc}
16]
17build: [
18 ["dune" "subst"] {dev}
19 [
20 "dune"
21 "build"
22 "-p"
23 name
24 "-j"
25 jobs
26 "@install"
27 "@runtest" {with-test}
28 "@doc" {with-doc}
29 ]
30]
31dev-repo: "git+https://github.com/Ahhj93/bin_tree.git"
32url {
33 src:
34 "https://github.com/Ahhj93/bin_tree/releases/download/0.1/bin_tree-0.1.tbz"
35 checksum: [
36 "sha256=1f3120d91da2ca2f22dec8c78b3f52fe23226d62959269f07c6ec5aa31c29dfe"
37 "sha512=9d34ad9dc764ffd8010ffbceaa9505672908e9c03f05104d77c3987ff26f258599d3b41b791d6c010dbd43de723e1e807872a1c37ae48cf845cec8e400b76016"
38 ]
39}
40x-commit-hash: "8095a0ab9142bf736b443541d593f96574432670"