-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhgraph.cabal
37 lines (35 loc) · 1.3 KB
/
hgraph.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
-- Initial hgraph.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: hgraph
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD3
license-file: LICENSE
author: Garvit Pahal
maintainer: g10pahal@gmail.com
-- copyright:
category: Database
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: HGraph, HGraph.SocialNetwork,HGraph.Types, HGraph.Path
-- other-modules:
-- other-extensions:
build-depends: base >=4.7 && <4.8
, text == 1.2.0.6
, cereal == 0.4.1.1
, bytestring == 0.10.4.0
, containers == 0.5.5.1
, unordered-containers == 0.2.5.1
, mtl == 2.1.3.1
, transformers == 0.3.0.0
, Cabal == 1.18.1.5
, pqueue == 1.3.0
, aeson == 0.8.0.2
, haskell-neo4j-client == 0.3.2.0
, random == 1.1
, criterion == 1.1.0.0
hs-source-dirs: src
default-language: Haskell2010