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]
13depends: [
14 "ocaml" {>= "4.05.0"}
15 "dune"
16 "aws-s3" {= "4.4.0" }
17 "async_kernel" {>= "v0.9.0" & < "v0.15"}
18 "async_unix" {>= "v0.9.0" & < "v0.15"}
19 "conduit-async"
20]
21synopsis: "Ocaml library for accessing Amazon S3 - Async version"
22description: """
23This library provides access to Amazon Simple Storage Solution (S3).
24The library supports:
25* Copying file to and from s3
26* List files in S3 (from root)
27* Delete single/multi object in S3
28* HEAD operation on single objects
29* Streaming transfer to and from aws.
30* Multi part upload (including s3 -> s3 copy)
31* Fetching machine role/credentials (though IAM)
32
33This library uses async for concurrency"""
34url {
35 src: "https://github.com/andersfugmann/aws-s3/archive/4.4.0.tar.gz"
36 checksum: [
37 "md5=df288ac897f859440f113aae71697b14"
38 "sha512=5a6b1950732358a44b99d8621d97661327af283de66a3f52854813b46a71e5fef3e5c17f60a3eb11cebb815a1ff02acb674522648f1ad955a3ef482018cf5d84"
39 ]
40}