this repo has no description
1opam-version: "2.0" 2maintainer: [ "Anil Madhavapeddy <anil@recoil.org>" ] 3authors: ["Jérôme Vouillon" "Jérémie Dimino"] 4license: "MIT" 5homepage: "https://github.com/mirage/lwt-dllist" 6doc: "https://mirage.github.io/lwt-dllist/" 7bug-reports: "https://github.com/mirage/lwt-dllist/issues" 8depends: [ 9 "ocaml" {>= "4.02.0"} 10 "lwt" {with-test} 11 "dune" 12] 13build: [ 14 ["dune" "build" "-p" name "-j" jobs] 15 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 16] 17dev-repo: "git+https://github.com/mirage/lwt-dllist.git" 18synopsis: "Mutable doubly-linked list with Lwt iterators" 19description: """ 20A sequence is an object holding a list of elements which support 21the following operations: 22 23- adding an element to the left or the right in time and space O(1) 24- taking an element from the left or the right in time and space O(1) 25- removing a previously added element from a sequence in time and space O(1) 26- removing an element while the sequence is being transversed. 27""" 28x-commit-hash: "66a569e31cdb65e9eaab4e684e5d549ea4bc7517" 29url { 30 src: 31 "https://github.com/mirage/lwt-dllist/releases/download/v1.0.1/lwt-dllist-v1.0.1.tbz" 32 checksum: [ 33 "sha256=e86ce75e40f00d51514cf8b2e71e5184c4cb5dae96136be24613406cfc0dba6e" 34 "sha512=1df7e8e12e01a5d32e1db746f922e05f23a67c0d20e72a5b9126fead1e04decdb062081574b1c410c822305ef4eac990b7dd69f36673db8f50b9db2152abad80" 35 ] 36}