haskell-lsp-0.18.0.0: haskell-lsp.cabal
name: haskell-lsp
version: 0.18.0.0
synopsis: Haskell library for the Microsoft Language Server Protocol
description: An implementation of the types, and basic message server to
allow language implementors to support the Language Server
Protocol for their specific language.
.
An example of this is for Haskell via the Haskell IDE
Engine, at https://github.com//haskell-ide-engine
homepage: https://github.com/alanz/haskell-lsp
license: MIT
license-file: LICENSE
author: Alan Zimmerman
maintainer: alan.zimm@gmail.com
copyright: Alan Zimmerman, 2016-2019
category: Development
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: 1.22
library
reexported-modules: Language.Haskell.LSP.Types
, Language.Haskell.LSP.Types.Capabilities
, Language.Haskell.LSP.Types.Lens
exposed-modules: Language.Haskell.LSP.Capture
, Language.Haskell.LSP.Constant
, Language.Haskell.LSP.Core
, Language.Haskell.LSP.Control
, Language.Haskell.LSP.Diagnostics
, Language.Haskell.LSP.Messages
, Language.Haskell.LSP.Utility
, Language.Haskell.LSP.VFS
-- other-modules:
-- other-extensions:
ghc-options: -Wall
build-depends: base >= 4.9 && < 4.14
, async
, aeson >=1.0.0.0
, attoparsec
, bytestring
, containers
, directory
, data-default
, filepath
, hslogger
, hashable
, haskell-lsp-types == 0.18.*
, lens >= 4.15.2
, mtl
, network-uri
, rope-utf16-splay >= 0.3.1.0
, sorted-list == 0.2.1.*
, stm
, temporary
, text
, time
, unordered-containers
hs-source-dirs: src
default-language: Haskell2010
executable lsp-hello
main-is: Main.hs
hs-source-dirs: example
-- src
default-language: Haskell2010
ghc-options: -Wall
build-depends: base >= 4.9 && < 4.14
, aeson
, bytestring
, containers
, directory
, data-default
, filepath
, hslogger
, lens >= 4.15.2
, mtl
, network-uri
, rope-utf16-splay >= 0.2
, stm
, text
, time
, transformers
, unordered-containers
, vector
-- the package library. Comment this out if you want repl changes to propagate
, haskell-lsp
if !flag(demo)
buildable: False
flag demo {
description: Build the lsp-hello demo executable
default: False
}
test-suite haskell-lsp-test
type: exitcode-stdio-1.0
-- hs-source-dirs: test src
hs-source-dirs: test
main-is: Main.hs
other-modules: Spec
CapabilitiesSpec
JsonSpec
DiagnosticsSpec
MethodSpec
ServerCapabilitiesSpec
TypesSpec
URIFilePathSpec
VspSpec
WorkspaceEditSpec
WorkspaceFoldersSpec
InitialConfigurationSpec
build-depends: base
, QuickCheck
, aeson
, bytestring
, containers
, data-default
, directory
, filepath
, hashable
, haskell-lsp
, hspec
-- , hspec-jenkins
, lens >= 4.15.2
, network-uri
, quickcheck-instances
, rope-utf16-splay >= 0.2
, sorted-list == 0.2.1.*
, stm
, text
-- For GHCI tests
-- , async
-- , haskell-lsp-types
-- , hslogger
-- , temporary
-- , time
-- , unordered-containers
build-tool-depends: hspec-discover:hspec-discover
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/alanz/haskell-lsp