-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathneo4j-cypher.cabal
103 lines (95 loc) · 2.88 KB
/
neo4j-cypher.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
-- Initial neo4j.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: neo4j-cypher
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD3
license-file: LICENSE
author: HaskellDC
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
synopsis: Haskell client library for Neo4j, focusing on Cypher
description: Haskell client library for Neo4j, focusing on Cypher
library
exposed-modules: Language.Cypher
Language.Cypher.Lex
Language.Cypher.Parse
Language.Cypher.Quasiquoter
Database.Neo4j
Database.Neo4j.Types
-- other-modules:
other-extensions: GADTs, DataKinds
build-depends: base >=4.6 && <4.8,
aeson >=0.7 && <0.9,
array >= 0.4 && <0.6,
bytestring >=0.10 && <0.11,
haskell-src-meta >=0.6 && <0.7,
HTTP >=4000.2 && <4000.3,
network >=2.4 && <2.6,
scientific >=0.3 &&<0.4,
template-haskell >=2.8 && <2.10,
text >=0.11 && <1.2,
vector >=0.10 && <0.11
-- hs-source-dirs:
default-language: Haskell2010
ghc-options: -Wall
source-repository head
type: git
branch: develop
location: https://github.com/HaskellDC/neo4j-cypher.git
source-repository this
type: git
tag: v0.1.0.0
location: https://github.com/HaskellDC/neo4j-cypher.git
test-suite db-test-suite
type: exitcode-stdio-1.0
main-is: Database/test-suite.hs
build-depends:
base >=4.6 && <4.8
, bytestring >=0.10 && <0.11
, HTTP >=4000.2 && <4000.3
, HUnit
, neo4j-cypher
, tasty
, tasty-hunit
, tasty-quickcheck
, tasty-th
, text
, vector
hs-source-dirs: tests
default-language: Haskell2010
test-suite cypher-test-suite
type: exitcode-stdio-1.0
main-is: Language/cypher-test-suite.hs
build-depends:
base >=4.6 && <4.8
, neo4j-cypher
, HUnit
, tasty
, tasty-hunit
, tasty-th
hs-source-dirs: tests
default-language: Haskell2010
test-suite quasiquoter-test-suite
type: exitcode-stdio-1.0
main-is: Language/Cypher/quasiquoter-test-suite.hs
build-depends:
base >=4.6 && <4.8
, neo4j-cypher
, HUnit
, tasty
, tasty-hunit
, tasty-th
hs-source-dirs: tests
default-language: Haskell2010
test-suite hlint
build-depends: base, hlint == 1.9.*
default-language: Haskell2010
hs-source-dirs: tests
main-is: HLint.hs
type: exitcode-stdio-1.0