-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecompass.cabal
More file actions
81 lines (71 loc) · 1.69 KB
/
codecompass.cabal
File metadata and controls
81 lines (71 loc) · 1.69 KB
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: codecompass
version: 0.1.0.0
license: BSD3
license-file: LICENSE
author: nboldi
maintainer: nboldi@elte.hu
category: Development
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
executable codecompass-sqlite-init
main-is: Main.hs
hs-source-dirs: db-init
build-depends:
base >=4.12 && <4.13
, directory
, text
, persistent
, persistent-sqlite
, persistent-template
, codecompass
default-language: Haskell2010
executable codecompass-postgresql-init
main-is: Main.hs
hs-source-dirs: postgres-init
build-depends:
base >=4.12 && <4.13
, bytestring
, directory
, text
, persistent
, persistent-postgresql
, persistent-template
, codecompass
, resourcet
, monad-logger
default-language: Haskell2010
library
exposed-modules:
Development.CodeCompass.Parser.Plugin
Development.CodeCompass.Parser.Names
Development.CodeCompass.Parser.Utils
Development.CodeCompass.Schema
other-modules:
Development.CodeCompass.Representation
build-depends:
base >=4.12 && <4.13
, ghc < 8.7
, uniplate
, persistent
, persistent-sqlite
, persistent-postgresql
, persistent-template
, monad-logger
, text
, mtl
, conduit
, unliftio-core
, containers
, lens
, exceptions
, bytestring
, terminfo <= 0.4.1.2
, timeit
, time
, directory
ghc-options: -Wunused-imports
-- Directories containing source files.
-- hs-source-dirs: src
-- Base language which the package is written in.
default-language: Haskell2010