this repo has no description
1opam-version: "2.0" 2maintainer: "Anders Fugmann <anders@fugmann.net>" 3authors: "Anders Fugmann" 4license: "BSD-3-Clause" 5homepage: "https://github.com/andersfugmann/aws-s3" 6dev-repo: "git+https://github.com/andersfugmann/aws-s3" 7bug-reports: "https://github.com/andersfugmann/aws-s3/issues" 8doc: "https://andersfugmann.github.io/aws-s3/" 9build: [ 10 ["dune" "subst"] {dev} 11 ["dune" "build" "-p" name "-j" jobs] 12 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 13] 14depends: [ 15 "ocaml" {>= "4.05.0"} 16 "dune" 17 "ocaml-inifiles" 18 "digestif" {>= "0.7"} 19 "ptime" 20 "uri" 21 "xml-light" 22 "yojson" 23 "ppx_protocol_conv_xml_light" { < "5.0.0" } 24 "ppx_protocol_conv_json" { < "5.0.0" } 25 "cmdliner" 26 "ppx_inline_test" 27 "base64" {< "3.0.0"} 28] 29synopsis: "Ocaml library for accessing Amazon S3" 30description: """ 31This library provides access to Amazon Simple Storage Solution (S3). 32The library supports: 33* Copying file to and from s3 34* List files in S3 (from root) 35* Delete single/multi object in S3 36* HEAD operation on single objects 37* Streaming transfer to and from aws. 38* Multi part upload (including s3 -> s3 copy) 39* Fetching machine role/credentials (though IAM) 40 41The library supports both lwt and async concurrency models. 42* For lwt, please install `aws-s3-lwt` package 43* For Async, please install `aws-s3-async` package""" 44url { 45 src: "https://github.com/andersfugmann/aws-s3/archive/4.2.0.tar.gz" 46 checksum: [ 47 "md5=5e9beffebcc82ee9990a62cc5ee6a76e" 48 "sha512=6fbb22efa0208c742bd4f52f1ae3ee2b46cd2a27ab64206013fecb798e91254c696a693fc90586087d248e252f1d96bc96b3d0c03f4185f49cc06fbfc28f125f" 49 ] 50}