this repo has no description
1opam-version: "2.0" 2maintainer: "Etienne Millon <etienne@cryptosense.com>" 3authors: "Etienne Millon <etienne@cryptosense.com>" 4homepage: "https://github.com/cryptosense/multipart-form-data" 5bug-reports: "https://github.com/cryptosense/multipart-form-data/issues" 6license: "BSD-2-Clause" 7dev-repo: "git+https://github.com/cryptosense/multipart-form-data.git" 8doc: "https://cryptosense.github.io/multipart-form-data/doc" 9build: [ 10 ["jbuilder" "subst" "-p" name] {dev} 11 ["jbuilder" "build" "-p" name "-j" jobs] 12 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 13] 14depends: [ 15 "ocaml" {>= "4.02.0"} 16 "jbuilder" {>= "1.0+beta7"} 17 "ocaml-migrate-parsetree" {build & < "2.0.0"} 18 "alcotest" {with-test} 19 "stringext" 20 "lwt" 21 "lwt_ppx" 22] 23synopsis: 24 "Parser for ocaml [![Build Status](https://travis-ci.org/cryptosense/multipart-form-data.svg)](https://travis-ci.org/cryptosense/multipart-form-data)" 25description: """ 26This is a parser for structured form data based on `Lwt_stream` in order to use 27it with [cohttp](https://github.com/mirage/ocaml-cohttp/). You can use it to 28send POST parameters. 29 30There are two APIs: 31 32- a high-level one: `parse_stream` and `get_parts`. It works for strings, but 33 has some problems with files. 34- a low-level one: `parse`. It works for well for both strings and files.""" 35url { 36 src: 37 "https://github.com/cryptosense/multipart-form-data/releases/download/v0.2.0/multipart-form-data-0.2.0.tbz" 38 checksum: [ 39 "sha256=b8869341547113705873abcee7340ee22057ff1341b007971de410e23dbb23d7" 40 "md5=7e6276ba4b19d6289cc4129fc45ab1f2" 41 ] 42}