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