this repo has no description
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Errpy: An Error Recovering Python Parser implemented in Rust" 4description: 5 "This is a new project to provide an error-recovering Python parser, implemented in Rust based on tree-sitter. Our short-term goal is to use it in the pyre type checker, in order to provide better IDE features." 6maintainer: ["pyre@meta.com"] 7authors: ["pyre@meta.com"] 8license: "MIT" 9homepage: "https://github.com/facebook/errpy" 10bug-reports: "https://github.com/facebook/errpy/issues" 11depends: [ 12 "ocaml" {>= "4.03"} 13 "dune" {>= "3.4"} 14 "ppx_deriving" 15 "conf-rust-2021" {build} 16 "ounit2" {with-test} 17 "odoc" {with-doc} 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@runtest" {with-test} 30 "@doc" {with-doc} 31 ] 32] 33dev-repo: "git+https://github.com/facebook/errpy.git" 34url { 35 src: "https://github.com/facebook/errpy/archive/refs/tags/0.0.9.tar.gz" 36 checksum: [ 37 "md5=ec89b3c48081a43a3b9d8b4216fe2dad" 38 "sha512=a553863a0d80188e2dc52f5cc7b153fbe51f71f8cb991c0c7a524cbe3a000952148150de13daf90032a9723aeb991a666340627502b04ec0f7aeee295f0b86fd" 39 ] 40} 41post-messages: [ 42 "ERRPY requires a rustc version of 1.65+ due to the tree-sitter dependency" {failure} 43]