-
Notifications
You must be signed in to change notification settings - Fork 48
/
example-client.cabal
61 lines (56 loc) · 1.91 KB
/
example-client.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
name: example-client
version: 0.1.0.0
synopsis: Example hackage-security client
description: Example client using the hackage-security library.
license: BSD3
license-file: LICENSE
author: Edsko de Vries
maintainer: [email protected]
copyright: Copyright 2015 Well-Typed LLP
category: Distribution
build-type: Simple
cabal-version: >=1.10
tested-with:
GHC == 9.10.1
GHC == 9.8.2
GHC == 9.6.5
GHC == 9.4.8
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
GHC == 8.6.5
GHC == 8.4.4
flag Cabal-syntax
description: Are we using Cabal-syntax?
manual: False
default: False
executable example-client
main-is: Main.hs
other-modules: ExampleClient.Options
build-depends: base >= 4.11 && < 4.21,
bytestring >= 0.10.8.2,
directory >= 1.3.1.5,
filepath >= 1.4.2,
network-uri >= 2.6,
network >= 2.6,
optparse-applicative >= 0.13,
time >= 1.8.0.2,
hackage-security >= 0.5,
hackage-security-HTTP,
hackage-security-curl,
hackage-security-http-client
hs-source-dirs: src
default-language: Haskell2010
default-extensions: DeriveDataTypeable
FlexibleContexts
RankNTypes
RecordWildCards
ScopedTypeVariables
other-extensions: CPP
ghc-options: -Wall
if flag(Cabal-syntax)
build-depends: Cabal-syntax >= 3.7 && < 3.16
else
build-depends: Cabal >= 2.2.0.1 && < 3.7,
Cabal-syntax < 3.7