forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CHANGES: - Support partial migrations (tmattio/omigrate#4, @maiste) - New Sqlite3 driver (tmattio/omigrate#3, @maiste) - Support optional auth with psql driver (tmattio/omigrate#2, @maiste)
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
opam-version: "2.0" | ||
synopsis: "Database migrations for Reason and OCaml" | ||
description: "Database migrations for Reason and OCaml" | ||
maintainer: ["Thibaut Mattio"] | ||
authors: ["Thibaut Mattio"] | ||
license: "MIT" | ||
homepage: "https://github.com/tmattio/omigrate" | ||
doc: "https://tmattio.github.io/omigrate/" | ||
bug-reports: "https://github.com/tmattio/omigrate/issues" | ||
depends: [ | ||
"dune" {>= "2.0"} | ||
"ocaml" {>= "4.08.0"} | ||
"lwt" {>= "5.3.0"} | ||
"uri" | ||
"cmdliner" {>= "1.1.0"} | ||
"logs" | ||
"fmt" | ||
"pgx" | ||
"pgx_lwt_unix" | ||
"sqlite3" | ||
] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/tmattio/omigrate.git" | ||
url { | ||
src: | ||
"https://github.com/tmattio/omigrate/releases/download/0.3.0/omigrate-0.3.0.tbz" | ||
checksum: [ | ||
"sha256=b9ab8bcb23153797057635dabb45492694ff9ccea2bf16e7569d6c926eacf98d" | ||
"sha512=ab555df902120771507c66bbae317f89fcf31836697213fe5c09d8bdf1596128902f04b7b1017c4d9f9645ec0a0643b18c8608e580ceabdd96ad73146249cfb9" | ||
] | ||
} | ||
x-commit-hash: "287d249fdcc0f6ed00d2ee43b3bc0bc6ee1a9e1a" |