this repo has no description
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Core functions of Diff/AST" 4description: 5 "Core functions of Diff/AST. Diff/AST is a fine-grained source code differencing tool based on an algorithm for computing tree edit distance (TED) between two ordered labeled trees." 6maintainer: [ 7 "Codinuum <codinuum@me.com>" 8 "Masatomo Hashimoto <m.hashimoto@stair.center>" 9] 10authors: [ 11 "Codinuum <codinuum@me.com>" 12 "Masatomo Hashimoto <m.hashimoto@stair.center>" 13] 14license: "Apache-2.0" 15tags: ["abstract syntax tree" "differencing"] 16homepage: "https://github.com/codinuum/diffast" 17doc: "https://github.com/codinuum/diffast/README.md" 18bug-reports: "https://github.com/codinuum/diffast/issues" 19depends: [ 20 "ocaml" {>= "4.14"} 21 "dune" {>= "3.17"} 22 "dune-site" 23 "camlp-streams" 24 "uuidm" 25 "csv" 26 "base64" 27 "sedlex" 28 "menhir" 29 "diffast-misc" {= version} 30 "vlt" {>= "0.2.4"} 31 "odoc" {with-doc} 32] 33build: [ 34 ["dune" "subst"] {dev} 35 [ 36 "dune" 37 "build" 38 "-p" 39 name 40 "-j" 41 jobs 42 "--promote-install-files=false" 43 "@install" 44 "@runtest" {with-test} 45 "@doc" {with-doc} 46 ] 47 ["dune" "install" "-p" name "--create-install-files" name] 48] 49dev-repo: "git+https://github.com/codinuum/diffast.git" 50url { 51 src: "https://github.com/codinuum/diffast/archive/v0.1.1.tar.gz" 52 checksum: [ 53 "sha256=2b36318d1317efb4e3ae71727934aa8883dde49ad5dd71d85df6a9b9b10bfe0a" 54 "md5=a0d35178f15cd2d2a3b907a0bbcc959c" 55 ] 56}