this repo has no description
1opam-version: "2.0" 2synopsis: "LINQ inspired queries on in-memory data" 3maintainer: "simon.cruanes.2007@m4x.org" 4authors: "Simon Cruanes" 5tags: ["linq" "query" "join" "group" "collection"] 6homepage: "https://github.com/c-cube/olinq/" 7bug-reports: "https://github.com/c-cube/olinq/issues/" 8depends: [ 9 "dune" {>= "1.1"} 10 "base-bytes" 11 "seq" 12 "ocaml" {>= "4.02" & < "5.0.0"} 13 "odoc" {with-doc} 14 "qtest" {with-test} 15 "qcheck" {with-test & >= "0.9" & < "0.14"} 16] 17build: [ 18 ["dune" "build" "-p" name "-j" jobs] 19 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc} 20 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 21] 22dev-repo: "git+https://github.com/c-cube/olinq.git" 23url { 24 src: "https://github.com/c-cube/olinq/archive/v0.3.tar.gz" 25 checksum: [ 26 "md5=586bfad3e744f8c459fa9f17db594c64" 27 "sha512=564efbea08d6e67ffa6ac6ba46c4737632ab206656f376a4b4b145984da7adcf14a731133c10201282105dae4345d924c423415830dcdaba78c98a0ffdda4c37" 28 ] 29}