this repo has no description
1opam-version: "2.0" 2synopsis: "A CSS parser written in OCaml" 3description: "Parses a CSS Level 3 string and produces an AST." 4maintainer: ["alessandro.strada@gmail.com"] 5authors: ["Alessandro Strada"] 6license: "MIT" 7homepage: "https://github.com/astrada/ocaml-css-parser" 8bug-reports: "https://github.com/astrada/ocaml-css-parser/issues" 9depends: [ 10 "alcotest" {with-test} 11 "dune" {>= "2.4"} 12 "menhir" {>= "20200211"} 13 "sedlex" {>= "2.0" & < "2.4"} 14] 15build: [ 16 ["dune" "subst"] {dev} 17 [ 18 "dune" 19 "build" 20 "-p" 21 name 22 "-j" 23 jobs 24 "@install" 25 "@runtest" {with-test} 26 "@doc" {with-doc} 27 ] 28] 29dev-repo: "git+https://github.com/astrada/ocaml-css-parser.git" 30url { 31 src: "https://github.com/astrada/ocaml-css-parser/archive/v0.2.2.tar.gz" 32 checksum: [ 33 "sha256=8a5bf1ef2d4097d189844db13405be9f846559189375eedca92eefbc2f847ec3" 34 "md5=6bdf8c715d252eca212a7803a26f67e0" 35 ] 36}