this repo has no description

Merge pull request #24719 from jamsidedown/opam-publish-cll.0.1.0

Package cll.0.1.0

Changed files
+43
packages
cll
cll.0.1.0
+43
packages/cll/cll.0.1.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.1.0.tar.gz"
+
checksum: [
+
"md5=6e8da977fb231fd2edbfdfd3c4d1dd6f"
+
"sha512=7b24535331e07f7e1734d0db826344efba271b23a0e8322f722694c1b862fea0d9b965796bac32ee31c414f791771ac64d6c30b3f31b1e8e8dbcaaa6034697c1"
+
]
+
}