From e106e6ec37e3859261f55acf845dd830c8a18bba Mon Sep 17 00:00:00 2001 From: Anton Bachin Date: Mon, 13 Dec 2021 14:54:16 +0300 Subject: [PATCH] Fix .gitignore and commit dream-pure.opam --- .gitignore | 3 ++- dream-pure.opam | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 dream-pure.opam diff --git a/.gitignore b/.gitignore index 9969b6bd..575d62a5 100644 --- a/.gitignore +++ b/.gitignore @@ -15,7 +15,8 @@ _esy/ esy.lock # Release script -dream-* +dream-*.gz +dream-*/ # Bisect_ppx _coverage/ diff --git a/dream-pure.opam b/dream-pure.opam new file mode 100644 index 00000000..13382927 --- /dev/null +++ b/dream-pure.opam @@ -0,0 +1,34 @@ +opam-version: "2.0" + +synopsis: "Internal: shared HTTP types for Dream (server) and Hyper (client)" + +license: "MIT" +homepage: "https://github.com/aantron/dream" +doc: "https://aantron.github.io/dream" +bug-reports: "https://github.com/aantron/dream/issues" +dev-repo: "git+https://github.com/aantron/dream.git" + +author: "Anton Bachin " +maintainer: "Anton Bachin " + +depends: [ + "base64" {>= "3.1.0"} # Base64.encode_string. + "bigstringaf" {>= "0.5.0"} # Bigstringaf.to_string. + "dune" {>= "2.7.0"} # --instrument-with. + "hmap" + "lwt" + "multipart_form" {>= "0.3.0"} + "ocaml" {>= "4.08.0"} + "ptime" {>= "0.8.1"} # Ptime.weekday. + "uri" {>= "4.2.0"} + + # Testing, development. + "alcotest" {with-test} + "bisect_ppx" {with-test & >= "2.5.0"} # --instrument-with. + "ppx_expect" {with-test} + "ppx_yojson_conv" {with-test} +] + +build: [ + ["dune" "build" "-p" name "-j" jobs] +]