this repo has no description

Package cll.0.2.0

Changed files
+42
packages
cll
cll.0.2.0
+42
packages/cll/cll.0.2.0/opam
···
+
# This file is generated by dune, edit dune-project instead
+
opam-version: "2.0"
+
synopsis: "Mutable circular doubly linked list"
+
description:
+
"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."
+
maintainer: ["Rob Anderson <opensource@robanderson.dev>"]
+
authors: ["Rob Anderson <opensource@robanderson.dev>"]
+
license: "MIT"
+
tags: ["circular linked list"]
+
homepage: "https://github.com/jamsidedown/ocaml-cll"
+
doc: "https://robanderson.dev/ocaml-cll"
+
bug-reports: "https://github.com/jamsidedown/ocaml-cll/issues"
+
depends: [
+
"ocaml" {>= "4.05"}
+
"dune" {>= "3.10"}
+
"ounit2" {with-test}
+
"bisect_ppx" {with-test}
+
"odoc" {with-doc}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
]
+
dev-repo: "git+https://github.com/jamsidedown/ocaml-cll.git"
+
url {
+
src:
+
"https://github.com/jamsidedown/ocaml-cll/archive/refs/tags/v0.2.0.tar.gz"
+
checksum: [
+
"md5=534e5defb87dfefab80ad58477ee860b"
+
"sha512=3324a8b80a9e642fc729d439fb9ecf9a9d40ea465f53b50f2ad6ac62bddc1a11031ab094e0b1223d0200c982b05604d4e3603e754bf1be2583bc5ba230a8f700"
+
]
+
}