-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.yaml
58 lines (58 loc) · 1.21 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
name: html-charset
version: 0.1.1
synopsis: Determine character encoding of HTML documents/fragments
category: Web
author: Hong Minhee <[email protected]>
maintainer: Hong Minhee <[email protected]>
copyright: © 2018–2022 Hong Minhee
license: LGPL-2.1
github: dahlia/html-charset
extra-source-files:
- CHANGES.md
- README.md
description: ! >
Please see the README.md on GitHub at
<https://github.com/dahlia/html-charset#readme>.
ghc-options:
- -Wall
- -fwarn-incomplete-uni-patterns
- -fprint-explicit-kinds
dependencies:
- base >= 4.7 && < 5
- bytestring
library:
source-dirs: src
dependencies:
- attoparsec >= 0.12 && < 1
- charsetdetect-ae >= 1.1 && < 2
executables:
html-charset:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- html-charset
- optparse-applicative >= 0.14 && < 1
tests:
doctest:
main: doctest.hs
source-dirs: test
other-modules: []
ghc-options:
- -threaded
dependencies:
- doctest
- doctest-discover
- html-charset
- QuickCheck
hlint:
main: hlint.hs
source-dirs: test
other-modules: []
ghc-options:
- -threaded
dependencies:
- hlint >= 2.1.7