this repo has no description
1opam-version: "2.0" 2maintainer: ["Cryptosense <opensource@cryptosense.com>"] 3authors: ["Cryptosense <opensource@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 ["dune" "build" "-p" name "-j" jobs] 11] 12run-test: [ 13 ["dune" "runtest" "-p" name "-j" jobs] 14] 15depends: [ 16 "alcotest" {with-test} 17 "dune" 18 "lwt" 19 "lwt_ppx" 20 "stringext" 21] 22synopsis: "Parser for multipart/form-data (RFC2388)" 23description: """ 24This is a parser for structured form data based on `Lwt_stream` in order to use 25it with cohttp. You can use it to send POST parameters. 26""" 27url { 28 src: 29 "https://github.com/cryptosense/multipart-form-data/archive/0.3.0.tar.gz" 30 checksum: [ 31 "md5=9f7088e64d2889191f9269b03ea2c5f6" 32 "sha512=fa1a8cb8adda2fa5fff1dbeda76ba294aeb254118db5019d0249b4afecc9fb012ae3566074bbc29d38b53d2196fc5395034db64e4b8d5406ebda56b58707bf75" 33 ] 34}