forked from YoEight/eventstore
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.yaml
99 lines (94 loc) · 1.97 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: eventstore
version: 1.4.3
homepage: https://github.com/EventStore/EventStoreDB-Client-Haskell
tested-with: GHC >= 8.0 && <= 8.8
synopsis: EventStore TCP Client
description: EventStore TCP Client <https://eventstore.com>
license: BSD3
license-file: LICENSE
author: Yorick Laupa
maintainer: [email protected]
copyright: Yorick Laupa
category: Database
git: https://github.com/EventStore/EventStoreDB-Client-Haskell.git
dependencies:
- base >=4.7 && <5
- aeson >=2
- mono-traversable ==1.*
- crypton-connection >=0.3
- containers
- dotnet-timespan
- stm
- time >=1.4
- uuid ==1.3.*
- lifted-base
- text
- bytestring
- semigroups
- hashable
- unordered-containers
- stm-chans
- stm
- lifted-async
- safe-exceptions
- monad-control
- exceptions
- transformers-base
- safe
- streaming
- vector
extra-source-files:
- README.md
- CHANGELOG.markdown
default-extensions:
- NoImplicitPrelude
- OverloadedStrings
- LambdaCase
- RecordWildCards
- RankNTypes
- TemplateHaskell # Only for logging capabilities.
- QuasiQuotes # Only for string interpolation.
- FlexibleContexts
- MultiParamTypeClasses
- TypeFamilies
- ConstraintKinds
library:
source-dirs: '.'
exposed-modules:
- Database.EventStore
- Database.EventStore.Streaming
- Database.EventStore.Internal.Test
dependencies:
- cereal >=0.4 && <0.6
- protobuf >=0.2.1.1 && <0.3
- random ==1.*
- unordered-containers
- semigroups >=0.5
- dns >= 3.0.1
- array
- http-client >=0.5
- mtl
- fast-logger
- monad-logger >= 0.3.20
- clock
- bifunctors
- interpolate
tests:
eventstore-tests:
source-dirs: tests
main: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
dependencies:
- eventstore
- tasty
- tasty-hunit
- tasty-hspec
- hspec
- aeson
- text
- protobuf
- cereal
- uuid
- fast-logger
- async
- file-embed