this repo has no description

[new release] rope (0.6.3) (#25347)

* [new release] rope (0.6.3)

CHANGES:

- Compatibility with OCaml 5.

* Apply suggestions from code review

* Update packages/rope/rope.0.6.3/opam

---------

Co-authored-by: Marcello Seri <mseri@users.noreply.github.com>

Changed files
+38
packages
rope
rope.0.6.3
+38
packages/rope/rope.0.6.3/opam
···
+
opam-version: "2.0"
+
maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>"
+
authors: [ "Christophe Troestler" ]
+
license: "LGPL-2.1-or-later 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: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
+
]
+
depends: [
+
"ocaml" {>= "5.0"}
+
"base-bytes"
+
"dune"
+
"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.3/rope-0.6.3.tbz"
+
checksum: [
+
"sha256=335e1f88ff410e2cf7584a0ca8026a65a5e4e0fa19f19d588ce93e17def3d396"
+
"sha512=01b089920716dc0e8182fb746bc604f4315f79f5e8c448924000e7eb8c278f71d99e1736a422b0a3f293b01ee312b8b3176493583883c781d446f433c1557ea5"
+
]
+
}
+
x-commit-hash: "d02b59916121e38dce9e98cbe5c1b7e2c24fa2e4"