-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Rome.cabal
116 lines (102 loc) · 3.98 KB
/
Rome.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
name: Rome
version: 0.24.0.65
synopsis: A cache for Carthage
description: Please see README.md
homepage: https://github.com/blender/Rome
license: MIT
license-file: LICENSE
author: Tommaso Piazza
maintainer: tommaso.piazza@gmail.com
copyright: 2016, 2017, 2018, 2019, 2020, 2021 Tommaso Piazza
category: Utility
build-type: Simple
-- extra-source-files:
cabal-version: >=1.24
library
hs-source-dirs: src
exposed-modules: Lib
, CommandParsers
, Configuration
, Types
, Types.Commands
, Utils
, Data.Carthage.Cartfile
, Data.Carthage.TargetPlatform
, Data.Carthage.Common
, Data.Carthage.VersionFile
, Data.Romefile
, Text.Parsec.Utils
, Xcode.DWARF
, Caches.S3.Probing
, Caches.S3.Uploading
, Caches.S3.Downloading
, Caches.Local.Probing
, Caches.Local.Uploading
, Caches.Local.Downloading
, Caches.Common
, Network.AWS.Utils
, Engine.Probing
, Engine.Uploading
, Engine.Downloading
build-depends: base >= 4.7 && < 5
, amazonka >= 1.6.1
, amazonka-core >= 1.6.1
, amazonka-s3 >= 1.6.1
, amazonka-sts >= 1.6.1
, exceptions >= 0.8
, lens >= 4.13
, parsec >= 3.1.10
, mtl >= 2.2.1
, directory >= 1.3.6
, filepath >= 1.4
, containers >= 0.5
, unordered-containers >= 0.2.7
, conduit >= 1.2
, http-conduit >= 2.1.0
, http-types >= 0.9
, conduit-extra >= 1.1
, ini >= 0.3.5
, split >= 0.2.1.3
, text >= 1.2
, time >= 1.5.0
, turtle >= 1.2
, transformers >= 0.4
, bytestring >= 0.10
, zip-archive >= 0.4.2 && < 0.5
, resourcet >= 1.1
, optparse-applicative >= 0.12
, aeson >= 0.11
, lifted-async >= 0.9.3
, url >= 2.1
, extra >= 1.5.3
, yaml >= 0.9.0
, safe >= 0.3.17
, uuid >= 1.3.13
ghc-options: -Wall -fno-warn-unused-do-bind
default-language: Haskell2010
executable rome
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base >= 4.7 && < 5
, Rome
, mtl >= 2.2.1
, optparse-applicative >= 0.12
, uuid >= 1.3.13
default-language: Haskell2010
test-suite Rome-test
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Tests.hs
build-depends: base
, Rome
, QuickCheck >= 2.8.2
, hspec >= 2.2.3
, text >= 1.2
, parsec
, yaml >= 0.9.0
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -fno-warn-unused-do-bind
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/blender/Rome