this repo has no description
1opam-version: "2.0" 2synopsis: "Abstract engine for text edition in OCaml" 3description: """ 4Zed is an abstract engine for text edition. It can be used to write text 5editors, edition widgets, readlines, ... Zed uses Camomile to fully support the 6Unicode specification, and implements an UTF-8 encoded string type with 7validation, and a rope datastructure to achieve efficient operations on large 8Unicode buffers. Zed also features a regular expression search on ropes. To 9support efficient text edition capabilities, Zed provides macro recording and 10cursor management facilities.""" 11maintainer: ["opam-devel@lists.ocaml.org"] 12authors: ["Jérémie Dimino"] 13license: "BSD-3-Clause" 14homepage: "https://github.com/ocaml-community/zed" 15bug-reports: "https://github.com/ocaml-community/zed/issues" 16depends: [ 17 "dune" {>= "3.0"} 18 "ocaml" {>= "4.02.3"} 19 "react" 20 "result" 21 "uchar" 22 "uutf" 23 "uucp" {>= "2.0.0"} 24 "uuseg" 25 "alcotest" {with-test} 26 "odoc" {with-doc} 27] 28build: [ 29 ["dune" "subst"] {dev} 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "@install" 38 "@runtest" {with-test} 39 "@doc" {with-doc} 40 ] 41] 42dev-repo: "git+https://github.com/ocaml-community/zed.git" 43url { 44 src: 45 "https://github.com/ocaml-community/zed/releases/download/3.2.2/zed-3.2.2.tbz" 46 checksum: [ 47 "sha256=096aecc8f22f1869ef085f0102bf5967917367086a612b7f8a6ea1b5d1ab772e" 48 "sha512=32b2c436250f988b63d6e34d242999265b767d53f16b120ee655b2faacea300d45abb8d99017faa3ee63e071a653673480c3eb440f8858121489e3f100e9a16a" 49 ] 50} 51x-commit-hash: "47ef02a5e28b2757e3728583b04d88281f6f36e6"