mirror of
https://github.com/haskell/ghcide.git
synced 2024-12-17 15:11:41 +03:00
e2e158a85d
* Move getFilesOfInterest into the IDE, and OfInterest out into DAML * Have the IDE mode kick all active files each time * Add a missing .cabal dependency * Add a missing dependencies * Use the right thing, if any files have parse errors, then don't worry * Print messages to stderr rather than stdout * Add a big warning that writing to stdout is a bad plan
132 lines
3.4 KiB
Plaintext
132 lines
3.4 KiB
Plaintext
cabal-version: >= 1.18
|
|
build-type: Simple
|
|
name: haskell-ide-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,
|
|
rope-utf16-splay,
|
|
safe-exceptions,
|
|
shake,
|
|
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.LSP
|
|
Development.IDE.Types.SpanInfo
|
|
other-modules:
|
|
Data.Text.Prettyprint.Doc.Syntax
|
|
|
|
executable ide-demo
|
|
default-language: Haskell2010
|
|
main-is: Demo.hs
|
|
ghc-options: -main-is Demo.main
|
|
build-depends:
|
|
base == 4.*,
|
|
filepath,
|
|
containers,
|
|
shake,
|
|
ghc-paths,
|
|
ghc,
|
|
extra,
|
|
haskell-lsp,
|
|
text,
|
|
haskell-ide-core
|
|
|
|
default-extensions:
|
|
TupleSections
|
|
RecordWildCards
|
|
ViewPatterns
|
|
|
|
hs-source-dirs: test
|