-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
66 lines (61 loc) · 1.16 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
name: hpack
version: 0.34.6
synopsis: A modern format for Haskell packages
description: See README at <https://github.com/sol/hpack#readme>
maintainer: Simon Hengel <[email protected]>
github: sol/hpack
category: Development
extra-source-files:
- CHANGELOG.md
ghc-options: -Wall
dependencies:
- base >= 4.9 && < 5
- bytestring
- deepseq
- directory >= 1.2.5.0
- filepath
- Glob >= 0.9.0
- text
- containers
- unordered-containers
- yaml >= 0.10.0
- aeson >= 1.4.3.0
- scientific
- Cabal >= 3.0.0.0 && < 3.6
- pretty
- bifunctors
- cryptonite
- transformers
- http-types
- http-client
- http-client-tls
- vector
- infer-license >= 0.2.0 && < 0.3
library:
source-dirs: src
exposed-modules:
- Hpack
- Hpack.Config
- Hpack.Render
- Hpack.Yaml
executable:
main: Main.hs
source-dirs: driver
dependencies:
- hpack
tests:
spec:
cpp-options: -DTEST
main: Spec.hs
source-dirs:
- test
- src
dependencies:
- hspec == 2.*
- QuickCheck
- temporary
- mockery >= 0.3
- interpolate
- template-haskell
- HUnit >= 1.6.0.0
build-tools: hspec-discover