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.08.0"} 16 "dune" 17 "ocaml-inifiles" 18 "digestif" {>= "0.7"} 19 "ptime" 20 "uri" {>= "1.3.1"} 21 "xml-light" 22 "yojson" 23 "base" {< "v0.17.0"} 24 "ppx_protocol_conv_xml_light" {>= "5.0.0" & < "6.0.0"} 25 "ppx_protocol_conv_json" {>= "5.0.0" & < "6.0.0"} 26 "cmdliner" 27 "ppx_inline_test" 28 "base64" {>= "3.1.0"} 29] 30synopsis: "Ocaml library for accessing Amazon S3" 31description: """ 32This library provides access to Amazon Simple Storage Solution (S3). 33The library supports: 34* Copying file to and from s3 35* List files in S3 (from root) 36* Delete single/multi object in S3 37* HEAD operation on single objects 38* Streaming transfer to and from aws. 39* Multi part upload (including s3 -> s3 copy) 40* Fetching machine role/credentials (though IAM) 41 42The library supports both lwt and async concurrency models. 43* For lwt, please install `aws-s3-lwt` package 44* For Async, please install `aws-s3-async` package""" 45url { 46 src: "https://github.com/andersfugmann/aws-s3/archive/4.4.0.tar.gz" 47 checksum: [ 48 "md5=df288ac897f859440f113aae71697b14" 49 "sha512=5a6b1950732358a44b99d8621d97661327af283de66a3f52854813b46a71e5fef3e5c17f60a3eb11cebb815a1ff02acb674522648f1ad955a3ef482018cf5d84" 50 ] 51}