this repo has no description
1opam-version: "2.0" 2synopsis: "An in-memory datalog implementation for OCaml" 3maintainer: "simon.cruanes.2007@m4x.org" 4authors: "Simon Cruanes" 5license: "BSD-2-Clause" 6tags: ["datalog" "relational" "query" "prolog"] 7homepage: "https://github.com/c-cube/datalog" 8doc: "https://c-cube.github.io/datalog" 9bug-reports: "https://github.com/c-cube/datalog/issues" 10depends: [ 11 "dune" 12 "ocaml" {>= "4.03" & < "5.0"} 13 "odoc" {with-doc} 14 "mdx" {>= "1.3" & with-test} 15] 16depopts: ["num"] 17build: [ 18 ["dune" "build" "@install" "-p" name "-j" jobs] 19 ["dune" "build" "@doc" "-p" name] {with-doc} 20 ["dune" "runtest" "-p" name] {with-test} 21] 22dev-repo: "git+https://github.com/c-cube/datalog" 23url { 24 src: "https://github.com/c-cube/datalog/archive/v0.6.tar.gz" 25 checksum: [ 26 "md5=4a2d12d630a5edd694968675a84a3ef5" 27 "sha512=685c0e186705837cb3ac66df6e8011d9f6a9629484b3a813b767df95348d5a41f37301f3e199ed6c91a42a87d1563e8355377269176785b123eb297a5ad022d7" 28 ] 29}