28 lines
657 B
Plaintext
28 lines
657 B
Plaintext
cabal-version: 3.0
|
|
name: geolog-lsp
|
|
version: 0.1.0.0
|
|
-- synopsis:
|
|
-- description:
|
|
license: BSD-3-Clause
|
|
license-file: LICENSE
|
|
author: Patrick Aldis
|
|
maintainer: patricktaldis@gmail.com
|
|
-- copyright:
|
|
build-type: Simple
|
|
extra-doc-files: CHANGELOG.md
|
|
-- extra-source-files:
|
|
|
|
common warnings
|
|
ghc-options: -Wall
|
|
|
|
executable geolog-lsp
|
|
import: warnings
|
|
main-is: Main.hs
|
|
-- other-modules:
|
|
-- other-extensions:
|
|
build-depends: base,
|
|
lsp,
|
|
text
|
|
hs-source-dirs: src
|
|
default-language: GHC2024
|