This repository was archived by the owner on Oct 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 206
/
Copy pathhaskell-ide-engine.cabal
111 lines (107 loc) · 3.92 KB
/
haskell-ide-engine.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
108
109
110
111
name: haskell-ide-engine
version: 0.1.0.0
synopsis: Provide a common engine to power any Haskell IDE
description: Please see README.md
homepage: http://github.com/githubuser/haskell-ide-engine#readme
license: BSD3
license-file: LICENSE
author: Many,TBD when we release
maintainer: alan.zimm@gmail.com (for now)
copyright: 2015 TBD
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Haskell.Ide.Engine.BasePlugin
Haskell.Ide.Engine.Console
Haskell.Ide.Engine.Dispatcher
Haskell.Ide.Engine.Monad
Haskell.Ide.Engine.MonadFunctions
Haskell.Ide.Engine.Options
Haskell.Ide.Engine.Transport.JsonHttp
Haskell.Ide.Engine.Transport.JsonStdio
Haskell.Ide.Engine.Types
other-modules: Paths_haskell_ide_engine
build-depends: base >= 4.7 && < 5
, Cabal >= 1.22
, aeson
, attoparsec
, bytestring
, containers
, directory
, either
, ghc >= 7.10.2 && < 7.11
, ghc-mod >= 5.4
, gitrev >= 1.1
, haskeline
, haskell-ide-plugin-api
, lens
, logging
, monad-control
, mtl
, optparse-applicative
, optparse-simple >= 0.0.3
, pipes
, pipes-aeson
, pipes-bytestring
, pipes-parse
, servant-server
, text
, time
, transformers
, wai
, warp
, vinyl >= 0.5 && < 0.6
ghc-options: -Wall
default-language: Haskell2010
executable hie
hs-source-dirs: app
main-is: MainHie.hs
other-modules: Paths_haskell_ide_engine
build-depends: base
, Cabal >= 1.22
, aeson
, containers
, directory
, ghc
, ghc-mod
, gitrev >= 1.1
, haskell-ide-engine
, haskell-ide-example-plugin2
, haskell-ide-plugin-api
, haskell-ide-plugin-ghcmod
, haskell-ide-plugin-hare
, logging
, optparse-applicative
, optparse-simple
, text
, time
, transformers
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
default-language: Haskell2010
test-suite haskell-ide-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules:
DispatcherSpec
GhcModPluginSpec
HaRePluginSpec
JsonStdioSpec
build-depends: base
, aeson
, containers
, haskell-ide-engine
, haskell-ide-plugin-api
, haskell-ide-plugin-hare
, haskell-ide-plugin-ghcmod
, hspec
, logging
, text
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/haskell/haskell-ide-engine