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