opam-version: "2.0"
maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>"
authors: [ "Christophe Troestler" ]
license: "LGPL-2.1-only with OCaml-LGPL-linking-exception"
homepage: "https://github.com/Chris00/ocaml-rope"
dev-repo: "git+https://github.com/Chris00/ocaml-rope.git"
bug-reports: "https://github.com/Chris00/ocaml-rope/issues"
doc: "https://Chris00.github.io/ocaml-rope/doc"
tags: [ "datastructure"  ]
build: [
  ["jbuilder" "subst" "-p" name] {pinned}
  ["jbuilder" "build" "-p" name "-j" jobs]
  ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
  "ocaml" {>= "4.03.0"}
  "base-bytes"
  "jbuilder" {>= "1.0+beta7"}
  "benchmark" {with-test}
]
synopsis: "Ropes (\"heavyweight strings\")"
description: """
Ropes ("heavyweight strings") are a scalable string implementation:
they are designed for efficient operation that involve the string as a
whole.  Operations such as concatenation, and substring take time that
is nearly independent of the length of the string.  Unlike strings,
ropes are a reasonable representation for very long strings such as
edit buffers or mail messages."""
url {
  src:
    "https://github.com/Chris00/ocaml-rope/releases/download/0.6.1/rope-0.6.1.tbz"
  checksum: "md5=b1a34f8a645ee153005565be87e9dbc7"
}
