ghcide/hie-core.cabal

133 lines
3.3 KiB
Plaintext
Raw Normal View History

cabal-version: >= 1.18
build-type: Simple
name: hie-core
version: 0
license: BSD3
x-license: BSD3 OR Apache2
author: Digital Asset
maintainer: Digital Asset
copyright: Digital Asset 2018-2019
synopsis: The core of an IDE
description:
A library for building Haskell IDE's on top of the GHC API.
homepage: https://github.com/digital-asset/daml#readme
bug-reports: https://github.com/digital-asset/daml/issues
tested-with: GHC==8.6.5
source-repository head
type: git
location: https://github.com/digital-asset/daml.git
library
default-language: Haskell2010
build-depends:
aeson,
async,
base == 4.*,
binary,
bytestring,
containers,
data-default,
deepseq,
directory,
either,
extra,
filepath,
ghc,
ghc-boot-th,
ghc-boot,
hashable,
haskell-lsp,
haskell-lsp-types,
mtl,
network-uri,
pretty,
2019-06-14 02:12:34 +03:00
rope-utf16-splay,
safe-exceptions,
shake,
2019-06-14 02:12:34 +03:00
sorted-list,
stm,
syb,
text,
time,
prettyprinter,
prettyprinter-ansi-terminal,
transformers,
uniplate,
unordered-containers,
utf8-string,
uri-encode
cpp-options: -DGHC_STABLE
default-extensions:
LambdaCase
BangPatterns
DeriveGeneric
RecordWildCards
ScopedTypeVariables
NamedFieldPuns
TupleSections
TypeApplications
ViewPatterns
GeneralizedNewtypeDeriving
StandaloneDeriving
hs-source-dirs:
src
../../libs-haskell/prettyprinter-syntax/src
exposed-modules:
Development.IDE.Logger
Development.IDE.UtilGHC
Development.IDE.Functions.AtPoint
Development.IDE.Functions.Compile
Development.IDE.Functions.CPP
Development.IDE.Orphans
Development.IDE.Functions.DependencyInformation
Development.IDE.Functions.Documentation
Development.IDE.Functions.FindImports
Development.IDE.Functions.GHCError
Development.IDE.Functions.SpanInfo
Development.IDE.Functions.Warnings
Development.IDE.State.FileStore
Development.IDE.State.Rules
Development.IDE.Compat
Development.IDE.LSP.LanguageServer
Development.IDE.LSP.Definition
Development.IDE.LSP.Hover
Development.IDE.LSP.Protocol
Development.IDE.LSP.Server
Development.IDE.Types.Options
Development.IDE.State.RuleTypes
Development.IDE.State.Service
Development.IDE.State.Shake
Development.IDE.Types.Diagnostics
Development.IDE.Types.Location
Development.IDE.Types.SpanInfo
other-modules:
Data.Text.Prettyprint.Doc.Syntax
executable hie-core
default-language: Haskell2010
main-is: Demo.hs
ghc-options: -main-is Demo.main
build-depends:
base == 4.*,
filepath,
containers,
directory,
hie-bios,
shake,
ghc-paths,
ghc,
extra,
2019-06-14 02:12:34 +03:00
haskell-lsp,
text,
hie-core
default-extensions:
TupleSections
RecordWildCards
2019-06-14 02:12:34 +03:00
ViewPatterns
hs-source-dirs: test