this repo has no description
1opam-version: "2.0" 2maintainer: "opam-devel@lists.ocaml.org" 3authors: ["Jérémie Dimino"] 4homepage: "https://github.com/ocaml-community/zed" 5bug-reports: "https://github.com/ocaml-community/zed/issues" 6dev-repo: "git+https://github.com/ocaml-community/zed.git" 7license: "BSD-3-Clause" 8depends: [ 9 "ocaml" {>= "4.02.3"} 10 "dune" {>= "1.1.0"} 11 "base-bytes" 12 "camomile" {>= "1.0.1" & < "2.0.0"} 13 "react" 14 "charInfo_width" {>= "1.1.0" & < "2.0~"} 15] 16build: [ 17 ["dune" "build" "-p" name "-j" jobs] 18 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 19] 20synopsis: "Abstract engine for text edition in OCaml" 21description: """ 22Zed is an abstract engine for text edition. It can be used to write text 23editors, edition widgets, readlines, ... Zed uses Camomile to fully support the 24Unicode specification, and implements an UTF-8 encoded string type with 25validation, and a rope datastructure to achieve efficient operations on large 26Unicode buffers. Zed also features a regular expression search on ropes. To 27support efficient text edition capabilities, Zed provides macro recording and 28cursor management facilities.""" 29url { 30 src: 31 "https://github.com/ocaml-community/zed/releases/download/2.0.6/zed-2.0.6.tbz" 32 checksum: [ 33 "sha256=40b22100037cf032d19f746fa7426b51b8c7bf0b8d6c8efc2d7272151c83bde9" 34 "md5=49de58f753bb4dd43ef6c2bc864ea8ff" 35 ] 36}