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"
8build: [
9 ["dune" "subst"] {dev}
10 ["dune" "build" "-p" name "-j" jobs]
11]
12depends: [
13 "ocaml" {>= "4.05.0"}
14 "dune" {>= "2.0.0"}
15 "aws-s3" {= version}
16 "lwt" {< "5.7.0"}
17 "conduit-lwt-unix" {>= "5.0.0"}
18]
19synopsis: "Ocaml library for accessing Amazon S3 - Lwt version"
20description: """
21This library provides access to Amazon Simple Storage Solution (S3).
22The library supports:
23* Copying file to and from s3
24* List files in S3 (from root)
25* Delete single/multi object in S3
26* HEAD operation on single objects
27* Streaming transfer to and from aws.
28* Multi part upload (including s3 -> s3 copy)
29* Fetching machine role/credentials (though IAM)
30
31This library uses lwt for concurrency"""
32url {
33 src: "https://github.com/andersfugmann/aws-s3/archive/4.8.0.tar.gz"
34 checksum: [
35 "md5=c8b19419fba5b964c7e8e9720475f61a"
36 "sha512=e34e243833299c59ff7914124c7fda39fbb26c81bb7adc7412a1b0b115d28a821d1fae1c82e03a74307e14c859f0d3289c766556f51050228525fe5e684cd2c0"
37 ]
38}