-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcache-s3.cabal
91 lines (84 loc) · 2.96 KB
/
cache-s3.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: cache-s3
version: 0.1.10
synopsis: Use an AWS S3 bucket for caching your stack build environment.
description: Save local directories to S3 bucket and restore them later to their
original locations. Designed for stack usage during CI, but can be
used with other tools and for other purposes.
homepage: https://github.com/fpco/cache-s3#readme
license: BSD3
license-file: LICENSE
author: Alexey Kuleshevich
maintainer: [email protected]
copyright: FP Complete
category: AWS
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Network.AWS.S3.Cache
, Network.AWS.S3.Cache.Local
other-modules: Network.AWS.S3.Cache.Remote
, Network.AWS.S3.Cache.Stack
, Network.AWS.S3.Cache.Types
Paths_cache_s3
build-depends: aeson
, amazonka
, amazonka-core
, amazonka-s3
, amazonka-s3-streaming
, attoparsec
, base >= 4.7 && < 5
, base64-bytestring
, bytestring
, conduit >= 1.2.8
, conduit-extra
, cryptonite
, cryptonite-conduit
, git
, http-client
, http-types
, lens
, memory
, mtl
, resourcet
, rio
, rio-orphans
, tar-conduit >= 0.2.0
, text
, transformers >= 0.5.2.0
, unliftio
, yaml
default-language: Haskell2010
ghc-options: -Wall
if os(windows)
cpp-options: -DWINDOWS
else
build-depends: lz4-conduit
executable cache-s3
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall -O2 -threaded
build-depends: amazonka
, amazonka-s3
, attoparsec
, base
, cache-s3
, optparse-applicative
, rio
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Spec.hs
other-modules: Network.AWS.S3.Cache.LocalSpec
build-depends: base >= 4.7 && < 5
, cache-s3
, hspec
, filepath
, QuickCheck
default-language: Haskell2010
ghc-options: -Wall -threaded
source-repository head
type: git
location: https://github.com/fpco/cache-s3