this repo has no description
1opam-version: "2.0" 2synopsis: "Database migrations for Reason and OCaml" 3description: "Database migrations for Reason and OCaml" 4maintainer: ["Thibaut Mattio"] 5authors: ["Thibaut Mattio"] 6license: "MIT" 7homepage: "https://github.com/tmattio/omigrate" 8doc: "https://tmattio.github.io/omigrate/" 9bug-reports: "https://github.com/tmattio/omigrate/issues" 10depends: [ 11 "ocaml" {>= "4.08.0"} 12 "dune" {>= "2.0"} 13 "odoc" {with-doc} 14 "lwt" {>= "5.3.0"} 15 "uri" 16 "cmdliner" 17 "logs" 18 "fmt" 19 "pgx" 20 "pgx_lwt_unix" 21] 22build: [ 23 ["dune" "subst"] {dev} 24 [ 25 "dune" 26 "build" 27 "-p" 28 name 29 "-j" 30 jobs 31 "@install" 32 "@runtest" {with-test} 33 "@doc" {with-doc} 34 ] 35] 36dev-repo: "git+https://github.com/tmattio/omigrate.git" 37url { 38 src: 39 "https://github.com/tmattio/omigrate/releases/download/0.1.0/omigrate-0.1.0.tbz" 40 checksum: [ 41 "sha256=396b32c67ca19c99be4628e0aaf493b090d49454f30acf6c999a1a3c5c6eba84" 42 "sha512=25daa55250ad2f2b32f114339e08312e7bef7bb64f7d16c6d5dc3e194a5b991f268d7016f607e8b8f998d73977322df1f6ca294443a3ffe159822c53e3bfa825" 43 ] 44}