1
1
mirror of https://github.com/github/semantic.git synced 2024-12-14 08:25:32 +03:00
semantic/semantic-java/semantic-java.cabal

51 lines
1.4 KiB
Plaintext
Raw Normal View History

2019-09-28 01:21:06 +03:00
cabal-version: 2.4
name: semantic-java
version: 0.0.0.0
synopsis: Semantic support for Java
description: Semantic support for Java.
homepage: https://github.com/github/semantic/tree/master/semantic-java#readme
bug-reports: https://github.com/github/semantic/issues
license: MIT
license-file: LICENSE
author: The Semantic authors
maintainer: opensource+semantic@github.com
copyright: (c) 2019 GitHub, Inc.
category: Language
build-type: Simple
stability: alpha
extra-source-files: README.md
tested-with: GHC == 8.6.5
library
exposed-modules:
Language.Java
2020-01-27 23:13:12 +03:00
Language.Java.AST
2020-01-30 00:55:40 +03:00
Language.Java.Grammar
2019-09-28 01:21:06 +03:00
Language.Java.Tags
build-depends:
2019-12-13 23:48:49 +03:00
base >= 4.13 && < 5
, fused-effects ^>= 1.0
, semantic-codegen
2020-01-28 20:42:42 +03:00
, semantic-source ^>= 0.0.2
2019-10-03 08:05:30 +03:00
, semantic-tags ^>= 0.0
2020-01-27 23:13:12 +03:00
, template-haskell ^>= 2.15
, tree-sitter ^>= 0.8
, tree-sitter-java ^>= 0.6.1
2019-09-28 01:21:06 +03:00
hs-source-dirs: src
default-language: Haskell2010
ghc-options:
-Weverything
-Wno-missing-local-signatures
-Wno-missing-import-lists
-Wno-implicit-prelude
-Wno-safe
-Wno-unsafe
-Wno-name-shadowing
-Wno-monomorphism-restriction
-Wno-missed-specialisations
-Wno-all-missed-specialisations
-Wno-star-is-type
2020-01-31 20:19:55 +03:00
-Wno-missing-deriving-strategies