-
Notifications
You must be signed in to change notification settings - Fork 0
/
unhack-core.cabal
107 lines (103 loc) · 4.57 KB
/
unhack-core.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
104
105
106
107
name: unhack-core
version: 0.1.0.0
synopsis: A command line utility for managing issues in the code in Unhack style.
description: Please see README.md
homepage: https://bitbucket.org/krystalcode/unhack-core
license: BSD3
license-file: LICENSE
author: Dimitris Bozelos
maintainer: [email protected]
copyright: 2016 Dimitris Bozelos
category: Development
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Unhack.Build.Action
, Unhack.Build.Condition
, Unhack.Build.Rule
, Unhack.Commit
, Unhack.Config
, Unhack.Data.Branch
, Unhack.Data.EmBranch
, Unhack.Data.EmCommit
, Unhack.Data.EmProjectRepository
, Unhack.Data.GitCommit
, Unhack.Data.IssueProperties
, Unhack.Data.Project
, Unhack.Cmd.Indexes
, Unhack.Cmd.Modes
, Unhack.Cmd.PubSub
, Unhack.Git.Commit
, Unhack.Git.Contents
, Unhack.Git.Branch
, Unhack.Git.Fetch
, Unhack.Git.Location
, Unhack.Git.Tree
, Unhack.Issue
, Unhack.Pubsub.Dispatcher
, Unhack.Pubsub.Publish
, Unhack.Pubsub.Repository
, Unhack.Pubsub.Repository.Delete
, Unhack.Pubsub.Router
, Unhack.Parser
, Unhack.Process
, Unhack.Data.EmIssueCommit
, Unhack.Data.Repository
, Unhack.Data.EmbeddedRepository
, Unhack.Storage.ElasticSearch.Config
, Unhack.Storage.ElasticSearch.Data.Branch
, Unhack.Storage.ElasticSearch.Data.Commit
, Unhack.Storage.ElasticSearch.Data.Project
, Unhack.Storage.ElasticSearch.Data.Repository
, Unhack.Storage.ElasticSearch.Mappings.Branch
, Unhack.Storage.ElasticSearch.Mappings.Commit
, Unhack.Storage.ElasticSearch.Mappings.Issue
, Unhack.Storage.ElasticSearch.Mappings.Project
, Unhack.Storage.ElasticSearch.Mappings.Repository
, Unhack.Storage.ElasticSearch.Operations
, Unhack.Storage.ElasticSearch.Types
, Unhack.Types
, Unhack.Util
build-depends: aeson >= 0.10.0.0 && < 1
, attoparsec >= 0.13.0.1 && < 1
, base >= 4.7 && < 5
, binary >= 0.7.5.0 && < 1
, bloodhound >= 0.10.0.0 && < 1
, bytestring >= 0.10.3.0 && < 1
, cmdargs >= 0.10 && < 1
, containers >= 0.5.6.2 && < 1
, directory >= 1.2.2.0 && < 2
, Glob >= 0.7.5 && < 1
, hedis >= 0.7.6 && < 1
, http-client >= 0.4.26.2 && < 1
, process >= 1.2.3.0 && < 2
, random >= 1.1 && < 2
, regex-pcre >= 0.94.4 && < 1
, semigroups >= 0.18.1 && < 1
, split >= 0.2.3 && < 1
, text >= 1.2.2.0 && < 2
, time >= 1.5.0.1 && < 2
, vector >= 0.11.0.0 && < 1
, yaml >= 0.8.15.1 && < 1
default-language: Haskell2010
executable unhack-engine
hs-source-dirs: app
main-is: Main.hs
-- @Issue("Ensure that the -O2 GHC option is applied since ghci throws an error", type="bug", priority="normal", labels="1.0.0-beta1, performance")
ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
build-depends: base
, unhack-core
default-language: Haskell2010
test-suite unhack-engine-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, unhack-core
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: [email protected]:krystalcode/unhack-core.git