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.4.tar.gz" 32 checksum: [ 33 "sha256=9c91064fd75dda05dad29b1e05c856ba3b9bac23ca4816e2a2da6bd46645e77e" 34 "md5=d437ecdab0138292b4a7081d404f833a" 35 ] 36}