-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypedb-client.cabal
80 lines (75 loc) · 1.6 KB
/
typedb-client.cabal
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
name: typedb-client
version: 0.0.0.1
synopsis: TypeDB haskell driver using gRPC-haskell by awakenetworks.
license: Apache-2.0
license-file: LICENSE
author: Fabian Schneider
maintainer: [email protected]
copyright: Fabian Schneider
category: Network
build-type: Simple
cabal-version: >=1.10
Flag Debug
Description: Adds debug logging.
Manual: True
Default: False
library
build-depends:
base >=4.8 && <5.0
, async
, bytestring == 0.10.*
, containers >=0.5 && <0.7
, deepseq
, grpc-haskell
, grpc-haskell-core
, proto3-suite
, proto3-wire
, optparse-generic
, text
, vector
, transformers
, safe-exceptions
, exceptions
, concurrency
, polysemy
, polysemy-plugin
, random
, template-haskell
, split
, unliftio
, unliftio-core
, uuid
exposed-modules:
TypeDBClient
TypeDBTransaction
Types
TypeDB
-- TypeDB protocol
Answer
Concept
CoreDatabase
CoreService
Logic
Options
Query
Session
Transaction
TypeQLParser
TypeDBQuery
TypeDBTH
Tests_TypeDBQuery
default-language: Haskell2010
ghc-options: -Wall -g
hs-source-dirs: lib
executable typedb-demo
build-depends:
base >=4.8 && <5.0
, async
, typedb-client
, exceptions
, text
default-language: Haskell2010
ghc-options: -Wall -g -threaded -rtsopts -with-rtsopts=-N
-- -O2
hs-source-dirs: src
main-is: TypeDBExample.hs