-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
59 lines (52 loc) · 1.04 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
name: debug-print
version: 0.0.0.0
maintainer: Freckle Education
category: Debug
github: freckle/debug-print
synopsis: A structured alternative to Show
license: MIT
extra-doc-files:
- README.md
- CHANGELOG.md
dependencies:
- base < 5
language: GHC2021
ghc-options:
- -Weverything
- -Wno-all-missed-specialisations
- -Wno-missing-import-lists
- -Wno-missing-kind-signatures
- -Wno-missing-safe-haskell-mode
- -Wno-safe
- -Wno-unsafe
when:
- condition: "impl(ghc >= 9.8)"
ghc-options:
- -Wno-missing-role-annotations
- -Wno-missing-poly-kind-signatures
default-extensions:
- DefaultSignatures
- DeriveAnyClass
- DerivingVia
- NoFieldSelectors
- NoImplicitPrelude
- NoMonomorphismRestriction
- OverloadedStrings
- StrictData
library:
source-dirs: library
dependencies:
- aeson
- containers
- text
- vector
tests:
readme:
main: README.lhs
ghc-options: -pgmL markdown-unlit
dependencies:
- aeson
- debug-print
- hspec
- markdown-unlit
- text