this repo has no description
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "Mutable circular doubly linked list"
4description: """
5 A mutable circular doubly linked list designed for O(1) insertion and removal, O(n) traversal, and close to O(1) search using a backing hashtable.
6 """
7maintainer: ["Rob Anderson <opensource@robanderson.dev>"]
8authors: ["Rob Anderson <opensource@robanderson.dev>"]
9license: "MIT"
10tags: ["circular linked list"]
11homepage: "https://github.com/jamsidedown/ocaml-cll"
12doc: "https://robanderson.dev/ocaml-cll"
13bug-reports: "https://github.com/jamsidedown/ocaml-cll/issues"
14depends: [
15 "ocaml" { >= "4.05" }
16 "dune" {>= "3.10"}
17 "ounit2" {with-test}
18 "bisect_ppx" {with-test}
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/jamsidedown/ocaml-cll.git"
36url {
37 src:
38 "https://github.com/jamsidedown/ocaml-cll/archive/refs/tags/v0.1.0.tar.gz"
39 checksum: [
40 "md5=6e8da977fb231fd2edbfdfd3c4d1dd6f"
41 "sha512=7b24535331e07f7e1734d0db826344efba271b23a0e8322f722694c1b862fea0d9b965796bac32ee31c414f791771ac64d6c30b3f31b1e8e8dbcaaa6034697c1"
42 ]
43}