this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #22373 from arenadotio/release-pgx-2.2

[new release] pgx_value_ptime, pgx_value_core, pgx_unix, pgx_lwt_unix, pgx_lwt_mirage, pgx_lwt, pgx_async and pgx (2.2)

authored by

Marcello Seri and committed by
GitHub
35b2a99a afeb1cfe

+344
+49
packages/pgx/pgx.2.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pure-OCaml PostgreSQL client library" 3 + description: 4 + "PGX is a pure-OCaml PostgreSQL client library, supporting Async, LWT, or synchronous operations." 5 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 6 + authors: ["Arena Developers <silver-snakes@arena.io>"] 7 + license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception" 8 + homepage: "https://github.com/arenadotio/pgx" 9 + doc: "https://arenadotio.github.io/pgx" 10 + bug-reports: "https://github.com/arenadotio/pgx/issues" 11 + depends: [ 12 + "alcotest" {with-test & >= "1.0.0"} 13 + "bisect_ppx" {dev & >= "2.0.0"} 14 + "dune" {>= "3.2" & >= "3.2"} 15 + "hex" 16 + "ipaddr" 17 + "camlp-streams" 18 + "ocaml" {>= "4.08"} 19 + "odoc" {with-doc} 20 + "ppx_compare" {>= "v0.13.0"} 21 + "ppx_custom_printf" {>= "v0.13.0"} 22 + "ppx_sexp_conv" {>= "v0.13.0"} 23 + "re" {>= "1.5.0"} 24 + "sexplib0" {>= "v0.13.0"} 25 + "uuidm" 26 + ] 27 + build: [ 28 + ["dune" "subst"] {dev} 29 + [ 30 + "dune" 31 + "build" 32 + "-p" 33 + name 34 + "-j" 35 + jobs 36 + "@install" 37 + "@runtest" {with-test} 38 + "@doc" {with-doc} 39 + ] 40 + ] 41 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 42 + url { 43 + src: "https://github.com/arenadotio/pgx/releases/download/2.2/pgx-2.2.tbz" 44 + checksum: [ 45 + "sha256=e50dfb4e9d124d74da0d82f480357f63f947bb469b49c171ffd5f27c3c69c56a" 46 + "sha512=07592f9c9a123b446f2742cc39bf23751dd0590b8028e7ed14f254c6f2c77a23efc616557aff43775354ff49cf71276ac400cf72d2c4d921fa4473d0b3209b21" 47 + ] 48 + } 49 + x-commit-hash: "1b8fdf1719467916670432605a07c9674e6df76d"
+45
packages/pgx_async/pgx_async.2.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pgx using Async for IO" 3 + description: "Pgx using Async for IO" 4 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 + authors: ["Arena Developers <silver-snakes@arena.io>"] 6 + license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception" 7 + homepage: "https://github.com/arenadotio/pgx" 8 + doc: "https://arenadotio.github.io/pgx" 9 + bug-reports: "https://github.com/arenadotio/pgx/issues" 10 + depends: [ 11 + "dune" {>= "3.2"} 12 + "alcotest-async" {with-test & >= "1.0.0"} 13 + "async_kernel" {>= "v0.13.0"} 14 + "async_unix" {>= "v0.13.0"} 15 + "async_ssl" 16 + "base64" {with-test & >= "3.0.0"} 17 + "conduit-async" {>= "1.5.0"} 18 + "ocaml" {>= "4.08"} 19 + "pgx" {= version} 20 + "pgx_value_core" {= version} 21 + "odoc" {with-doc} 22 + ] 23 + build: [ 24 + ["dune" "subst"] {dev} 25 + [ 26 + "dune" 27 + "build" 28 + "-p" 29 + name 30 + "-j" 31 + jobs 32 + "@install" 33 + "@runtest" {with-test} 34 + "@doc" {with-doc} 35 + ] 36 + ] 37 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 38 + url { 39 + src: "https://github.com/arenadotio/pgx/releases/download/2.2/pgx-2.2.tbz" 40 + checksum: [ 41 + "sha256=e50dfb4e9d124d74da0d82f480357f63f947bb469b49c171ffd5f27c3c69c56a" 42 + "sha512=07592f9c9a123b446f2742cc39bf23751dd0590b8028e7ed14f254c6f2c77a23efc616557aff43775354ff49cf71276ac400cf72d2c4d921fa4473d0b3209b21" 43 + ] 44 + } 45 + x-commit-hash: "1b8fdf1719467916670432605a07c9674e6df76d"
+40
packages/pgx_lwt/pgx_lwt.2.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pgx using Lwt for IO" 3 + description: "Pgx using Lwt for IO" 4 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 + authors: ["Arena Developers <silver-snakes@arena.io>"] 6 + license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception" 7 + homepage: "https://github.com/arenadotio/pgx" 8 + doc: "https://arenadotio.github.io/pgx" 9 + bug-reports: "https://github.com/arenadotio/pgx/issues" 10 + depends: [ 11 + "dune" {>= "3.2"} 12 + "lwt" 13 + "logs" 14 + "ocaml" {>= "4.08"} 15 + "pgx" {= version} 16 + "odoc" {with-doc} 17 + ] 18 + build: [ 19 + ["dune" "subst"] {dev} 20 + [ 21 + "dune" 22 + "build" 23 + "-p" 24 + name 25 + "-j" 26 + jobs 27 + "@install" 28 + "@runtest" {with-test} 29 + "@doc" {with-doc} 30 + ] 31 + ] 32 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 33 + url { 34 + src: "https://github.com/arenadotio/pgx/releases/download/2.2/pgx-2.2.tbz" 35 + checksum: [ 36 + "sha256=e50dfb4e9d124d74da0d82f480357f63f947bb469b49c171ffd5f27c3c69c56a" 37 + "sha512=07592f9c9a123b446f2742cc39bf23751dd0590b8028e7ed14f254c6f2c77a23efc616557aff43775354ff49cf71276ac400cf72d2c4d921fa4473d0b3209b21" 38 + ] 39 + } 40 + x-commit-hash: "1b8fdf1719467916670432605a07c9674e6df76d"
+48
packages/pgx_lwt_mirage/pgx_lwt_mirage.2.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pgx using Lwt on Mirage for IO" 3 + description: "Pgx using Lwt on Mirage for IO" 4 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 + authors: ["Arena Developers <silver-snakes@arena.io>"] 6 + license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception" 7 + homepage: "https://github.com/arenadotio/pgx" 8 + doc: "https://arenadotio.github.io/pgx" 9 + bug-reports: "https://github.com/arenadotio/pgx/issues" 10 + depends: [ 11 + "dune" {>= "3.2"} 12 + "lwt" 13 + "ocaml" {>= "4.08"} 14 + "logs" 15 + "mirage-channel" 16 + "conduit-mirage" {>= "2.3.0"} 17 + "dns-client" {>= "6.0.0"} 18 + "mirage-random" 19 + "mirage-time" 20 + "mirage-clock" 21 + "tcpip" {>= "7.0.0"} 22 + "pgx" {= version} 23 + "pgx_lwt" {= version} 24 + "odoc" {with-doc} 25 + ] 26 + build: [ 27 + ["dune" "subst"] {dev} 28 + [ 29 + "dune" 30 + "build" 31 + "-p" 32 + name 33 + "-j" 34 + jobs 35 + "@install" 36 + "@runtest" {with-test} 37 + "@doc" {with-doc} 38 + ] 39 + ] 40 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 41 + url { 42 + src: "https://github.com/arenadotio/pgx/releases/download/2.2/pgx-2.2.tbz" 43 + checksum: [ 44 + "sha256=e50dfb4e9d124d74da0d82f480357f63f947bb469b49c171ffd5f27c3c69c56a" 45 + "sha512=07592f9c9a123b446f2742cc39bf23751dd0590b8028e7ed14f254c6f2c77a23efc616557aff43775354ff49cf71276ac400cf72d2c4d921fa4473d0b3209b21" 46 + ] 47 + } 48 + x-commit-hash: "1b8fdf1719467916670432605a07c9674e6df76d"
+41
packages/pgx_lwt_unix/pgx_lwt_unix.2.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pgx using Lwt and Unix libraries for IO" 3 + description: "Pgx using Lwt and Unix libraries for IO" 4 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 + authors: ["Arena Developers <silver-snakes@arena.io>"] 6 + license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception" 7 + homepage: "https://github.com/arenadotio/pgx" 8 + doc: "https://arenadotio.github.io/pgx" 9 + bug-reports: "https://github.com/arenadotio/pgx/issues" 10 + depends: [ 11 + "dune" {>= "3.2"} 12 + "alcotest-lwt" {with-test & >= "1.0.0"} 13 + "base64" {with-test & >= "3.0.0"} 14 + "ocaml" {>= "4.08"} 15 + "pgx" {= version} 16 + "pgx_lwt" {= version} 17 + "odoc" {with-doc} 18 + ] 19 + build: [ 20 + ["dune" "subst"] {dev} 21 + [ 22 + "dune" 23 + "build" 24 + "-p" 25 + name 26 + "-j" 27 + jobs 28 + "@install" 29 + "@runtest" {with-test} 30 + "@doc" {with-doc} 31 + ] 32 + ] 33 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 34 + url { 35 + src: "https://github.com/arenadotio/pgx/releases/download/2.2/pgx-2.2.tbz" 36 + checksum: [ 37 + "sha256=e50dfb4e9d124d74da0d82f480357f63f947bb469b49c171ffd5f27c3c69c56a" 38 + "sha512=07592f9c9a123b446f2742cc39bf23751dd0590b8028e7ed14f254c6f2c77a23efc616557aff43775354ff49cf71276ac400cf72d2c4d921fa4473d0b3209b21" 39 + ] 40 + } 41 + x-commit-hash: "1b8fdf1719467916670432605a07c9674e6df76d"
+41
packages/pgx_unix/pgx_unix.2.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "PGX using the standard library's Unix module for IO (synchronous)" 3 + description: 4 + "PGX using the standard library's Unix module for IO (synchronous)" 5 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 6 + authors: ["Arena Developers <silver-snakes@arena.io>"] 7 + license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception" 8 + homepage: "https://github.com/arenadotio/pgx" 9 + doc: "https://arenadotio.github.io/pgx" 10 + bug-reports: "https://github.com/arenadotio/pgx/issues" 11 + depends: [ 12 + "dune" {>= "3.2"} 13 + "alcotest" {with-test & >= "1.0.0"} 14 + "base64" {with-test & >= "3.0.0"} 15 + "ocaml" {>= "4.08"} 16 + "pgx" {= version} 17 + "odoc" {with-doc} 18 + ] 19 + build: [ 20 + ["dune" "subst"] {dev} 21 + [ 22 + "dune" 23 + "build" 24 + "-p" 25 + name 26 + "-j" 27 + jobs 28 + "@install" 29 + "@runtest" {with-test} 30 + "@doc" {with-doc} 31 + ] 32 + ] 33 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 34 + url { 35 + src: "https://github.com/arenadotio/pgx/releases/download/2.2/pgx-2.2.tbz" 36 + checksum: [ 37 + "sha256=e50dfb4e9d124d74da0d82f480357f63f947bb469b49c171ffd5f27c3c69c56a" 38 + "sha512=07592f9c9a123b446f2742cc39bf23751dd0590b8028e7ed14f254c6f2c77a23efc616557aff43775354ff49cf71276ac400cf72d2c4d921fa4473d0b3209b21" 39 + ] 40 + } 41 + x-commit-hash: "1b8fdf1719467916670432605a07c9674e6df76d"
+40
packages/pgx_value_core/pgx_value_core.2.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pgx_value converters for Core types like Date and Time" 3 + description: "Pgx_value converters for Core types like Date and Time" 4 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 + authors: ["Arena Developers <silver-snakes@arena.io>"] 6 + license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception" 7 + homepage: "https://github.com/arenadotio/pgx" 8 + doc: "https://arenadotio.github.io/pgx" 9 + bug-reports: "https://github.com/arenadotio/pgx/issues" 10 + depends: [ 11 + "dune" {>= "3.2"} 12 + "alcotest" {with-test & >= "1.0.0"} 13 + "core_kernel" {>= "v0.13.0"} 14 + "ocaml" {>= "4.08"} 15 + "pgx" {= version} 16 + "odoc" {with-doc} 17 + ] 18 + build: [ 19 + ["dune" "subst"] {dev} 20 + [ 21 + "dune" 22 + "build" 23 + "-p" 24 + name 25 + "-j" 26 + jobs 27 + "@install" 28 + "@runtest" {with-test} 29 + "@doc" {with-doc} 30 + ] 31 + ] 32 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 33 + url { 34 + src: "https://github.com/arenadotio/pgx/releases/download/2.2/pgx-2.2.tbz" 35 + checksum: [ 36 + "sha256=e50dfb4e9d124d74da0d82f480357f63f947bb469b49c171ffd5f27c3c69c56a" 37 + "sha512=07592f9c9a123b446f2742cc39bf23751dd0590b8028e7ed14f254c6f2c77a23efc616557aff43775354ff49cf71276ac400cf72d2c4d921fa4473d0b3209b21" 38 + ] 39 + } 40 + x-commit-hash: "1b8fdf1719467916670432605a07c9674e6df76d"
+40
packages/pgx_value_ptime/pgx_value_ptime.2.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pgx_value converters for Ptime types" 3 + description: "Pgx_value converters for Ptime types" 4 + maintainer: ["Arena Developers <silver-snakes@arena.io>"] 5 + authors: ["Arena Developers <silver-snakes@arena.io>"] 6 + license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception" 7 + homepage: "https://github.com/arenadotio/pgx" 8 + doc: "https://arenadotio.github.io/pgx" 9 + bug-reports: "https://github.com/arenadotio/pgx/issues" 10 + depends: [ 11 + "dune" {>= "3.2"} 12 + "alcotest" {with-test & >= "1.0.0"} 13 + "ptime" {>= "0.8.3"} 14 + "ocaml" {>= "4.08"} 15 + "pgx" {= version} 16 + "odoc" {with-doc} 17 + ] 18 + build: [ 19 + ["dune" "subst"] {dev} 20 + [ 21 + "dune" 22 + "build" 23 + "-p" 24 + name 25 + "-j" 26 + jobs 27 + "@install" 28 + "@runtest" {with-test} 29 + "@doc" {with-doc} 30 + ] 31 + ] 32 + dev-repo: "git+https://github.com/arenadotio/pgx.git" 33 + url { 34 + src: "https://github.com/arenadotio/pgx/releases/download/2.2/pgx-2.2.tbz" 35 + checksum: [ 36 + "sha256=e50dfb4e9d124d74da0d82f480357f63f947bb469b49c171ffd5f27c3c69c56a" 37 + "sha512=07592f9c9a123b446f2742cc39bf23751dd0590b8028e7ed14f254c6f2c77a23efc616557aff43775354ff49cf71276ac400cf72d2c4d921fa4473d0b3209b21" 38 + ] 39 + } 40 + x-commit-hash: "1b8fdf1719467916670432605a07c9674e6df76d"