this repo has no description
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Term indexing library" 4description: 5 "A library for term indexing. It allows to represent set of first-order terms and to perform queries such as iterating on terms unifiable with, specializing or generalizing a given query term. The library also exposes facilities for term rewriting and solving unification problems." 6maintainer: ["igarnier@protonmail.com"] 7authors: ["Ilias Garnier"] 8license: "MIT" 9tags: ["symbolics" "rewriting"] 10homepage: "http://github.com/igarnier/term-indexing" 11bug-reports: "http://github.com/igarnier/term-indexing" 12depends: [ 13 "dune" {>= "3.0"} 14 "ocaml" {>= "4.14"} 15 "hashcons" {>= "1.4.0"} 16 "containers" {>= "3.13.1"} 17 "printbox" {>= "0.11"} 18 "printbox-text" {>= "0.9.0"} 19 "fmt" {>= "0.9.0"} 20 "alcotest" {>= "0.8.1" & with-test} 21 "qcheck" {>= "0.21" & with-test} 22 "qcheck-core" {>= "0.21" & with-test} 23 "qcheck-alcotest" {>= "0.21" & with-test} 24 "odoc" {with-doc} 25] 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36 "@runtest" {with-test} 37 "@doc" {with-doc} 38 ] 39] 40dev-repo: "git+https://github.com/igarnier/term-indexing" 41url { 42 src: 43 "https://github.com/igarnier/term-indexing/archive/refs/tags/0.0.1.tar.gz" 44 checksum: [ 45 "md5=9ba5dcf909fde539e173daf8f13abffd" 46 "sha512=e84fb1104c420db346181416a1e95e60aeb1b757ed7456a6028a6dfd5096bb7888af7c1ad6ea1acb25e99318e86d1f75c82a072bbdc3ba8218e5b16778199dfe" 47 ] 48}