-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
67 lines (61 loc) · 1.28 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
name: unicode-general-category
version: 0.1.0.0
github: Javran/unicode-general-category
license: BSD3
author: Javran Cheng
maintainer: [email protected]
copyright: "Copyright: (c) 2021 Javran Cheng"
synopsis: Unicode General Category Database
description:
This package provides Unicode General Category data for Unicode 13.0.0.
In addition it offers tools to process UnicodeData.txt content
and turn it into a database compatible with this package.
category: Unicode
extra-source-files: embed/*
dependencies:
- base >= 4.5 && <= 1000
library:
source-dirs: src
ghc-options:
- -Wall
dependencies:
- array
- bytestring
- text
- containers
- file-embed
- binary
tests:
hspec:
main: Spec.hs
source-dirs:
- test
dependencies:
- unicode-general-category
- QuickCheck
- hspec
- containers
- bytestring
ghc-options:
- -Wall
- -O2
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -main-is Spec
benchmarks:
criterion:
main: Bench.hs
source-dirs:
- bench
dependencies:
- criterion
- deepseq
- unicode-general-category
- random-shuffle
ghc-options:
- -threaded
- -O2
- -rtsopts
- -with-rtsopts=-N
- -main-is Bench