-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.cabal
67 lines (61 loc) · 2.16 KB
/
circle.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
name: circle
version: 0.1.0.0
synopsis: Circle API client for Haskell
description: For usage information please consult README.md
homepage: https://github.com/dmarticus/circle#readme
license: MIT
license-file: LICENSE
author: Dylan Martin
maintainer: [email protected]
copyright: 2022 Dylan Martin
category: Web
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules:
Circle
Circle.Client
Circle.Types
build-depends:
aeson >=0.11.1 && <1.6
, autodocodec >=0.2.0 && <0.3
, base >=4.7 && <5
, bytestring >=0.10.0 && <0.11
, case-insensitive >=1.2.1 && <1.3
, containers >=0.6.5 && <0.7
, country >=0.2.1 && <0.3
, http-client >=0.7.6 && <0.7.9
, http-client-tls >=0.3 && <0.3.6
, http-types >=0.8 && <0.13
, pcre-heavy >=1.0.0 && <1.1
, refined >=0.6 && <0.9
, template-haskell >=2.16.0 && <2.17
, text >=0.11 && <1.3
, time >=1.4 && <1.11
, unordered-containers >=0.2.5 && <0.3
, uuid >=1.3.15 && <1.4
, vector >=0.10.9 && <0.13
default-language: Haskell2010
ghc-options: -Wall -fwarn-unused-binds -fwarn-unused-imports
test-suite test
ghc-options: -Wall -fwarn-unused-binds -fwarn-unused-imports
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: test
build-depends:
base >=4.7 && <5
, circle
, hspec >=1.8 && <2.8
, hspec-expectations >=0.8.2 && <0.9
, http-client >=0.7.6 && <0.7.9
, http-client-tls >=0.3 && <0.3.6
, random >=1.2.0 && <1.3
, safe >=0.3 && <0.4
, text >=0.11 && <1.3
, time >=1.9.3 && <1.10
, uuid >=1.3.15 && <1.4
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/dmarticus/circle