-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to Dune file syntax - Fewer parentheses - Dependency variable syntax changed to explicit naming (:exe) vs ${<} - name defaults to same as public_name in Dune 1.1 - I removed some unnecessary (wrapped false) annotations in libraries with only one file
- Loading branch information
1 parent
d464c6b
commit 3a4252e
Showing
23 changed files
with
81 additions
and
106 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 @@ | ||
(lang dune 1.1) |
Empty file.
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
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,6 @@ | ||
(library | ||
(public_name pgx) | ||
(wrapped false) | ||
(inline_tests (flags (-verbose))) | ||
(libraries uuidm re sexplib0) | ||
(preprocess (pps ppx_jane bisect_ppx -conditional))) |
This file was deleted.
Oops, something went wrong.
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,10 @@ | ||
(executables | ||
(names test_pgx_value) | ||
(libraries pgx oUnit) | ||
(preprocess (pps ppx_jane))) | ||
|
||
(alias | ||
(name runtest) | ||
(package pgx) | ||
(deps (:exe test_pgx_value.exe)) | ||
(action (run %{exe}))) |
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
(executables | ||
(names pgx_async_example) | ||
(libraries core async pgx_async) | ||
(preprocess (pps ppx_jane))) | ||
|
||
(alias | ||
(name examples) | ||
(deps pgx_async_example.exe)) |
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
(library | ||
(public_name pgx_async) | ||
(wrapped false) | ||
(flags (:standard -safe-string)) | ||
(libraries async pgx) | ||
(preprocess (pps bisect_ppx -conditional ppx_jane))) |
This file was deleted.
Oops, something went wrong.
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,16 @@ | ||
(executables | ||
(names test_pgx_async test_pgx_async_conversions) | ||
(libraries pgx_async pgx_test oUnit) | ||
(preprocess (pps ppx_jane))) | ||
|
||
(alias | ||
(name runtest) | ||
(package pgx_async) | ||
(deps (:exe test_pgx_async.exe)) | ||
(action (run %{exe}))) | ||
|
||
(alias | ||
(name runtest) | ||
(package pgx_async) | ||
(deps (:exe test_pgx_async_conversions.exe)) | ||
(action (run %{exe}))) |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
(library | ||
(public_name pgx_lwt) | ||
(wrapped false) | ||
(libraries lwt lwt.unix pgx) | ||
(preprocess (pps bisect_ppx -conditional ppx_jane))) |
This file was deleted.
Oops, something went wrong.
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,10 @@ | ||
(executable | ||
(name test_pgx_lwt) | ||
(libraries pgx_test pgx_lwt) | ||
(preprocess (pps ppx_jane))) | ||
|
||
(alias | ||
(name runtest) | ||
(package pgx_lwt) | ||
(deps (:exe test_pgx_lwt.exe)) | ||
(action (run %{exe}))) |
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
(library | ||
(name pgx_test) | ||
(libraries base64 pgx oUnit) | ||
(preprocess (pps ppx_jane))) |
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
(library | ||
(public_name pgx_unix) | ||
(libraries pgx) | ||
(preprocess (pps bisect_ppx -conditional ppx_jane))) |
This file was deleted.
Oops, something went wrong.
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,10 @@ | ||
(executable | ||
(name test_pgx_unix) | ||
(libraries pgx_test pgx_unix) | ||
(preprocess (pps ppx_jane))) | ||
|
||
(alias | ||
(name runtest) | ||
(package pgx_unix) | ||
(deps (:exe test_pgx_unix.exe)) | ||
(action (run %{exe}))) |
This file was deleted.
Oops, something went wrong.