-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.yaml
83 lines (64 loc) · 1.72 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
77
78
79
80
81
82
83
# SPDX-FileCopyrightText: 2020 Serokell <https://serokell.io/>
#
# SPDX-License-Identifier: MPL-2.0
name: with-utf8
version: 1.1.0.0
synopsis: Get your IO right on the first try
description: |
This minimalistic library helps you navigate the world of text encodings
avoiding @invalid argument (invalid byte sequence)@
and @invalid argument (invalid character)@ in runtime.
See <https://serokell.io/blog/haskell-with-utf8 this blog post> for why this
library exists and what exactly it does.
The two most important modules are:
* "Main.Utf8"
* "System.IO.Utf8"
category: IO
author: Kirill Elagin <[email protected]>
copyright: 2020 Serokell
license-file: LICENSES/MPL-2.0.txt
github: serokell/haskell-with-utf8
extra-doc-files:
- CHANGELOG.md
- README.md
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
dependencies:
- base >= 4.10 && < 4.21
- text >= 0.7 && < 2.2
library:
source-dirs: lib
dependencies:
- safe-exceptions >= 0.1 && < 0.2 # only really needed for polymorphic bracket
executables:
utf8-troubleshoot:
source-dirs: app/utf8-troubleshoot
main: Main.hs
c-sources: app/utf8-troubleshoot/cbits/locale.c
dependencies:
- directory >= 1.2.5.0 && < 1.4
- filepath >= 1.0 && < 1.6
- process >= 1.0.1.1 && < 1.7
- safe-exceptions
- th-env >= 0.1.0.0 && < 0.2
tests:
with-utf8-test:
source-dirs: test
main: Test.hs
dependencies:
- with-utf8
- deepseq
- safe-exceptions
- temporary
- unix
- hedgehog
- HUnit
- tasty
- tasty-hedgehog
- tasty-hunit
build-tools:
- tasty-discover:tasty-discover