this repo has no description
1opam-version: "2.0" 2synopsis: "Fast combinatorics functions for OCaml." 3description: """ 4combinat provides fast iterators over combinatorial objects such as 5permutations, combinations, and integer partitions.""" 6maintainer: "Jack Feser <feser@csail.mit.edu>" 7authors: "Jack Feser <feser@csail.mit.edu>" 8homepage: "https://github.com/jfeser/combinat" 9doc: "https://jfeser.github.io/combinat/" 10bug-reports: "https://github.com/jfeser/combinat/issues" 11depends: [ 12 "ocaml" {>= "4.06"} 13 "dune" {>= "1.7"} 14 "base" {>= "v0.12"} 15 "stdio" {>= "v0.12"} 16 "ppx_sexp_conv" {>= "v0.12"} 17 "ppx_expect" {>= "v0.12"} 18 "core_bench" {with-test & >= "v0.12"} 19] 20build: ["dune" "build" "-p" name "-j" jobs] 21dev-repo: "git+https://github.com/jfeser/combinat.git" 22url { 23 src: 24 "https://github.com/jfeser/combinat/releases/download/1.0/combinat-1.0.tbz" 25 checksum: [ 26 "sha256=6376a91c6d0b82f41a0ef0c857f851486c9de5f9e817ae36141ca86ee60259cb" 27 "md5=122247fb70b1bda02818e023de7165c7" 28 ] 29}