2019-09-10 21:07:58 +03:00
|
|
|
cabal-version: 2.4
|
|
|
|
-- Initial package description 'semantic-ast.cabal' generated by 'cabal
|
|
|
|
-- init'. For further documentation, see
|
|
|
|
-- http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: semantic-ast
|
|
|
|
version: 0.1.0.0
|
|
|
|
-- synopsis:
|
|
|
|
-- description:
|
|
|
|
-- bug-reports:
|
|
|
|
license: MIT
|
|
|
|
license-file: LICENSE
|
|
|
|
author: The Semantic Authors
|
|
|
|
maintainer: opensource+semantic@github.com
|
2019-10-16 21:02:04 +03:00
|
|
|
copyright: (c) 2019 GitHub, Inc.
|
2019-09-10 21:07:58 +03:00
|
|
|
category: Language
|
|
|
|
extra-source-files: CHANGELOG.md
|
|
|
|
|
2019-10-21 20:30:57 +03:00
|
|
|
tested-with: GHC == 8.6.5
|
|
|
|
|
2019-11-19 23:38:55 +03:00
|
|
|
common haskell
|
|
|
|
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
|
|
|
|
if (impl(ghc >= 8.8))
|
|
|
|
ghc-options: -Wno-missing-deriving-strategies
|
|
|
|
|
2019-09-10 21:07:58 +03:00
|
|
|
library
|
2019-11-19 23:38:55 +03:00
|
|
|
import: haskell
|
2020-02-04 21:23:26 +03:00
|
|
|
exposed-modules:
|
2020-02-04 21:36:40 +03:00
|
|
|
AST.Element
|
2020-02-04 21:23:26 +03:00
|
|
|
AST.Traversable1
|
2020-02-04 22:11:43 +03:00
|
|
|
AST.Traversable1.Class
|
2020-02-04 21:23:26 +03:00
|
|
|
Marshal.JSON
|
2020-01-31 01:35:51 +03:00
|
|
|
|
2020-01-24 19:43:40 +03:00
|
|
|
|
2019-09-10 21:07:58 +03:00
|
|
|
-- other-modules:
|
|
|
|
-- other-extensions:
|
2019-12-16 20:20:05 +03:00
|
|
|
build-depends: base ^>= 4.13
|
2019-12-19 18:00:03 +03:00
|
|
|
, aeson ^>= 1.4.2.0
|
2019-12-19 21:33:49 +03:00
|
|
|
, aeson-pretty ^>= 0.8.8
|
2020-01-28 03:13:31 +03:00
|
|
|
, bytestring ^>= 0.10.8.2
|
|
|
|
, tree-sitter ^>= 0.8
|
2020-01-29 23:09:17 +03:00
|
|
|
, semantic-source ^>= 0.0.2
|
2020-01-28 03:13:31 +03:00
|
|
|
, template-haskell ^>= 2.15
|
|
|
|
, bytestring ^>= 0.10.8.2
|
|
|
|
, optparse-applicative >= 0.14.3 && < 0.16
|
|
|
|
, pretty-simple ^>= 3.1.0.0
|
|
|
|
, text ^>= 1.2.3.1
|
|
|
|
|
2019-09-10 21:07:58 +03:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|