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." 6maintainer: ["Rob Anderson <opensource@robanderson.dev>"] 7authors: ["Rob Anderson <opensource@robanderson.dev>"] 8license: "MIT" 9tags: ["circular linked list"] 10homepage: "https://github.com/jamsidedown/ocaml-cll" 11doc: "https://robanderson.dev/ocaml-cll" 12bug-reports: "https://github.com/jamsidedown/ocaml-cll/issues" 13depends: [ 14 "ocaml" {>= "4.05"} 15 "dune" {>= "3.10"} 16 "ounit2" {with-test} 17 "bisect_ppx" {with-test} 18 "odoc" {with-doc} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33] 34dev-repo: "git+https://github.com/jamsidedown/ocaml-cll.git" 35url { 36 src: 37 "https://github.com/jamsidedown/ocaml-cll/archive/refs/tags/v0.2.0.tar.gz" 38 checksum: [ 39 "md5=534e5defb87dfefab80ad58477ee860b" 40 "sha512=3324a8b80a9e642fc729d439fb9ecf9a9d40ea465f53b50f2ad6ac62bddc1a11031ab094e0b1223d0200c982b05604d4e3603e754bf1be2583bc5ba230a8f700" 41 ] 42}