-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.yaml
72 lines (72 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
68
69
70
71
72
name: kioku
version: '0.1.3.0'
synopsis: A library for indexing and querying static datasets on disk
category: Database
author: Flipstone Technology Partners
maintainer: development@flipstone.com
license: MIT
homepage: http://github.com/flipstone/kioku
default-extensions:
- OverloadedStrings
ghc-options:
- -Wall
- -fprof-auto
- -Werror
dependencies:
- base >=4.8
- bytestring
- zlib
library:
source-dirs: src
exposed-modules:
- Database.Kioku
- Database.Kioku.Core
- Database.Kioku.Memorizable
- Database.Kioku.Schema
dependencies:
- base16-bytestring
- containers
- cryptohash
- directory
- filepath
- mmap
- non-empty-text
- vector
- vector-algorithms >=0.8.0.1
- reinterpret-cast
- tar
- temporary
- text
executables:
kioku-benchmarks:
main: benchmarks/Main.hs
ghc-options:
- -O3
- -rtsopts
dependencies:
- time
- kioku
- deepseq
kioku-example:
main: example/Main.hs
default-extensions:
- RecordWildCards
ghc-options:
- -O3
dependencies:
- kioku
tests:
kioku-test:
main: Driver.hs
source-dirs: test
ghc-options:
- -O3
dependencies:
- kioku
- containers
- deepseq
- tasty
- tasty-discover
- tasty-hunit
- hedgehog
- tasty-hedgehog