-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmigra.opam
More file actions
49 lines (49 loc) · 1.64 KB
/
Copy pathmigra.opam
File metadata and controls
49 lines (49 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "2.2.0"
synopsis:
"A database migration tool and library for OCaml supporting PostgreSQL, MariaDB/MySQL, and SQLite"
description:
"A database migration tool and library for OCaml. Migrations are plain SQL with up and down sections, and the database (PostgreSQL, MariaDB/MySQL, or SQLite) is selected from the connection URL. Applied migrations are tracked with checksums, and drift (a modified, missing, or out-of-order migration) is detected before anything runs. It can be used from the command line or embedded as a library to migrate on application startup."
maintainer: ["David Sinclair <dsincl12@gmail.com>"]
authors: ["David Sinclair"]
license: "MIT"
tags: ["database" "migrations" "postgresql" "mariadb" "mysql" "sqlite"]
homepage: "https://github.com/dsincl12/migra"
doc: "https://github.com/dsincl12/migra"
bug-reports: "https://github.com/dsincl12/migra/issues"
depends: [
"dune" {>= "3.12"}
"ocaml" {>= "4.14.0"}
"dune-build-info" {>= "3.12"}
"lwt" {>= "5.6.0"}
"alcotest" {with-test & >= "1.7.0"}
"alcotest-lwt" {with-test & >= "1.7.0"}
"caqti" {>= "2.0.0"}
"caqti-lwt" {>= "2.0.0"}
"caqti-dynload" {>= "2.0.0"}
"uri" {>= "4.4.0"}
"cmdliner" {>= "2.0.0"}
"logs" {>= "0.7.0"}
"logs-ppx" {>= "0.2.0"}
"fmt" {>= "0.9.0"}
"odoc" {with-doc}
]
depopts: [
"caqti-driver-postgresql" "caqti-driver-mariadb" "caqti-driver-sqlite3"
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/dsincl12/migra.git"