this repo has no description
1opam-version: "2.0" 2 3maintainer: "d.plaindoux@free.fr" 4authors: [ 5 "Didier Plaindoux <d.plaindoux@free.fr>" 6] 7 8license: "MIT" 9tags: ["library" "parser-combinator"] 10homepage: "https://github.com/d-plaindoux/transept" 11dev-repo: "git+https://github.com/d-plaindoux/transept.git" 12bug-reports: "https://github.com/d-plaindoux/transept/issues" 13 14build: [ 15 [ "dune" "subst" ] 16 [ "dune" "build" "-p" name "-j" jobs ] 17 [ "dune" "runtest" "-p" name ] {with-test} 18 [ "dune" "build" "@doc" "-p" name ] {with-doc} 19] 20 21depends: [ 22 "ocaml" { >= "4.08.0" } 23 "dune" { >= "1.11" } 24 "alcotest" {with-test} 25 "odoc" {with-doc} 26] 27 28synopsis: "Generalized parser combinator library" 29description:""" 30Explore generalized parser combinator with a strong modular approach. 31""" 32url { 33 src: "https://github.com/d-plaindoux/transept/archive/0.1.0.tar.gz" 34 checksum: [ 35 "sha256=670634cc4be9a297c0f7174b61136e528a9d58ceab3ed78d71ef4680e4721e8b" 36 "md5=292994b959f2c2a55b9c1b2e10a09211" 37 ] 38}