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.03.0"}
10 "lwt"
11 "dune"
12]
13build: [
14 ["dune" "subst"] {dev}
15 ["dune" "build" "-p" name "-j" jobs]
16 ["dune" "runtest" "-p" name "-j" jobs] {with-test & ocaml:version < "5.0.0"}
17]
18dev-repo: "git+https://github.com/mirage/lwt-dllist.git"
19synopsis: "Mutable doubly-linked list with Lwt iterators"
20description: """
21A sequence is an object holding a list of elements which support
22the following operations:
23
24- adding an element to the left or the right in time and space O(1)
25- taking an element from the left or the right in time and space O(1)
26- removing a previously added element from a sequence in time and space O(1)
27- removing an element while the sequence is being transversed.
28"""
29url {
30 src:
31 "https://github.com/mirage/lwt-dllist/releases/download/v1.0.0/lwt-dllist-v1.0.0.tbz"
32 checksum: [
33 "sha256=491ee89013f1f6e4f2c8bddb4e3eade3b881eea41ececb18876126ec900b213c"
34 "md5=28959f39bbb96e86776265a836f2e0d5"
35 ]
36}