this repo has no description
1opam-version: "2.0" 2synopsis: "Tokenizing code with TextMate grammars for syntax highlighting" 3description: """ 4 5This package provides functions for reading TextMate grammars and tokenizing 6code on a line-by-line basis. `textmate-language` can read grammars from the 7document types of the `plist-xml`, `ezjsonm`, and `yojson` libraries.""" 8maintainer: ["Alan Hu <alanh@ccs.neu.edu>"] 9authors: ["Alan Hu <alanh@ccs.neu.edu>"] 10license: "MIT" 11tags: ["highlighting"] 12homepage: "https://github.com/alan-j-hu/ocaml-textmate-language" 13bug-reports: "https://github.com/alan-j-hu/ocaml-textmate-language/issues" 14depends: [ 15 "dune" {>= "2.7"} 16 "oniguruma" {>= "0.1.2" & < "0.2.0"} 17 "ocaml" {>= "4.08"} 18 "plist-xml" {>= "0.5" & with-test} 19 "alcotest" {>= "1.4" & < "2" & with-test} 20 "ezjsonm" {>= "1.2" & < "2" & with-test} 21 "yojson" {>= "1.7" & with-test} 22 "odoc" {with-doc} 23] 24build: [ 25 ["dune" "subst"] {dev} 26 [ 27 "dune" 28 "build" 29 "-p" 30 name 31 "-j" 32 jobs 33 "@install" 34 "@runtest" {with-test} 35 "@doc" {with-doc} 36 ] 37] 38dev-repo: "git+https://github.com/alan-j-hu/ocaml-textmate-language.git" 39url { 40 src: 41 "https://github.com/alan-j-hu/ocaml-textmate-language/releases/download/0.3.4/textmate-language-0.3.4.tbz" 42 checksum: [ 43 "sha256=c3bcfc9a9c46fe09dc96b5a15c300b29f6685a1cf5fe2c0e43f4e3df1a20859d" 44 "sha512=8b1ff02d62d10c79af8a547e4e00e7c0a8a668256672dcb607662aa1a310bf849824597b9e41ac66d89b0c99ab760ae35793d063ac868cf54c46fe466d8cd313" 45 ] 46} 47x-commit-hash: "45f6a5d8b6ef45847fa02dac80c6f75c6126c1f1"