-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.yaml
67 lines (62 loc) · 1.49 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: blacktip
version: 0.1.0.1
synopsis: Decentralized, k-ordered unique ID generator.
description: Clone of Boundary\'s Flake unique id service for Haskell, itself based on Snowflake.
homepage: https://github.com/bitemyapp/blacktip
license: Apache-2.0
author: Chris Allen
maintainer: [email protected]
copyright: 2017, Chris Allen
category: Database
default-extensions:
- OverloadedStrings
# - QuasiQuotes
# - TemplateHaskell
dependencies:
- base >= 4.7 && < 5
- bitwise >= 0.1.0.0
- bytestring
- clock >= 0.7
- deepseq
- deepseq-generics >= 0.1.1.0
- locators >= 0.2.4.2
- network-info >= 0.2
- safe >= 0.3
- split >= 0.2.0
- system-fileio >= 0.3
- system-filepath
- time >= 1.4.0
library:
ghc-options: -Wall -threaded
source-dirs: src
exposed-modules:
- Database.Blacktip
- Database.Blacktip.Types
tests:
tests:
main: tests.hs
source-dirs: test
ghc-options:
- -threaded
- -Wall
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base
- blacktip
- hspec
benchmarks:
benches:
main: benches.hs
source-dirs: benchmarks
ghc-options:
- -Wall
- -O
- -threaded
dependencies:
- base
- async
- blacktip
- criterion
- network-info
- time