-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.yaml
76 lines (71 loc) · 1.36 KB
/
package.yaml
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
name: memcache
version: 0.3.0.2
github: dterei/memcache-hs
synopsis: A memcached client library.
license: BSD3
license-file: LICENSE
author: David Terei <[email protected]>
maintainer: David Terei <[email protected]>
copyright: 2016 David Terei.
category: Database
build-type: Simple
extra-doc-files:
- README.md
- CHANGELOG.md
- TODO.md
extra-source-files:
- package.yaml
dependencies:
- base < 5
- binary
- blaze-builder
- bytestring
- network
other-extensions:
- BangPatterns
- CPP
library:
source-dirs: .
dependencies:
- data-default-class
- errors
- hashable
- network-uri
- resource-pool
- text
- time
- unliftio
- vector
other-modules:
- Database.Memcache.Types.Authentication
- Database.Memcache.Types.ServerSpec
other-extensions:
- DeriveDataTypeable
- FlexibleInstances
- RecordWildCards
- ScopedTypeVariables
ghc-options:
- -Wall
- -fwarn-tabs
tests:
spec:
main: Full.hs
source-dirs: test
ghc-options: -threaded -rtsopts "-with-rtsopts=-N"
other-extensions:
- OverloadedStrings
other-modules:
- MockServer
dependencies:
- memcache
- network
- unliftio
benchmarks:
parser:
main: Parser.hs
source-dirs: bench
other-extensions:
- OverloadedStrings
dependencies:
- memcache
- criterion