dhall-haskell/dhall-lsp-server/dhall-lsp-server.cabal

126 lines
3.1 KiB
Plaintext

cabal-version: 1.12
name: dhall-lsp-server
version: 0.1.0.1
description: Please see the README on GitHub at <https://github.com/githubuser/dhall-lsp-server#readme>
homepage: https://github.com/dhall-lang/dhall-haskell/dhall-lsp-server#readme
bug-reports: https://github.com/dhall-lang/dhall-haskell/issues
author: panaeon
maintainer: panaeon
copyright: 2019 panaeon
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/dhall-lang/dhall-haskell
library
exposed-modules:
Dhall.LSP.Backend.Dhall
Dhall.LSP.Backend.Diagnostics
Dhall.LSP.Backend.Freezing
Dhall.LSP.Backend.Formatting
Dhall.LSP.Backend.Linting
Dhall.LSP.Backend.Parsing
Dhall.LSP.Backend.ToJSON
Dhall.LSP.Backend.Typing
Dhall.LSP.Handlers
Dhall.LSP.Server
Dhall.LSP.State
other-modules:
Paths_dhall_lsp_server
Dhall.LSP.Util
hs-source-dirs:
src
default-extensions: LambdaCase OverloadedStrings FlexibleInstances TypeApplications RecordWildCards ScopedTypeVariables
build-depends:
aeson
, aeson-pretty
, base >=4.7 && <5
, bytestring
, containers
, cryptonite
, data-default
, dhall
, dhall-json
, dotgen
, filepath
, haskell-lsp < 0.9
, hslogger
, lens
, lens-family-core
, megaparsec
, mtl
, network-uri
, optparse-applicative
, prettyprinter
, sorted-list
, stm
, text
, transformers
, unordered-containers
, uri-encode
, yi-rope
default-language: Haskell2010
GHC-Options: -Wall -fwarn-incomplete-uni-patterns
if impl(eta)
buildable: False
executable dhall-lsp-server
main-is: Main.hs
other-modules:
Paths_dhall_lsp_server
hs-source-dirs:
app
default-extensions: LambdaCase OverloadedStrings FlexibleInstances TypeApplications RecordWildCards ScopedTypeVariables
ghc-options: -rtsopts
build-depends:
aeson
, base >=4.7 && <5
, containers
, data-default
, dhall
, dhall-lsp-server
, filepath
, haskell-lsp
, hslogger
, lens
, lens-family-core
, megaparsec
, mtl
, optparse-applicative
, prettyprinter
, sorted-list
, stm
, text
, transformers
, unordered-containers
, yi-rope
default-language: Haskell2010
GHC-Options: -Wall -fwarn-incomplete-uni-patterns
if impl(eta)
buildable: False
Test-Suite doctest
Type: exitcode-stdio-1.0
Hs-Source-Dirs: doctest
Main-Is: Main.hs
GHC-Options: -Wall
Build-Depends:
base ,
directory ,
filepath < 1.5 ,
doctest >= 0.7.0 && < 0.17
Other-Extensions: OverloadedStrings RecordWildCards
Default-Language: Haskell2010
-- `doctest` doesn't work with `MIN_VERSION` macros before GHC 8
--
-- See: https://ghc.haskell.org/trac/ghc/ticket/10970
if impl(ghc < 8.0)
Buildable: False