1
1
mirror of https://github.com/github/semantic.git synced 2024-11-29 11:02:26 +03:00
semantic/semantic-ast/semantic-ast.cabal

82 lines
2.4 KiB
Plaintext
Raw Normal View History

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
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
2019-12-14 16:36:36 +03:00
exposed-modules: Marshal.JSON
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
, 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
, tree-sitter-python ^>= 0.8.1
, 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
2020-01-13 18:46:32 +03:00
2019-09-10 21:07:58 +03:00
executable semantic-ast
2019-11-19 23:38:55 +03:00
import: haskell
2019-09-10 21:07:58 +03:00
main-is: Main.hs
-- other-modules:
-- other-extensions:
2019-12-10 21:32:56 +03:00
build-depends: base
, semantic-ast
2019-12-10 21:32:56 +03:00
, tree-sitter
, semantic-source
, tree-sitter-python
, bytestring
, optparse-applicative
, pretty-simple
2019-12-17 21:29:37 +03:00
, aeson
2019-12-19 18:16:47 +03:00
, bytestring
2019-12-19 21:33:49 +03:00
, aeson-pretty
, semantic-python
2020-01-28 03:13:31 +03:00
, text
2020-01-24 19:40:19 +03:00
hs-source-dirs: app
2019-09-10 21:07:58 +03:00
default-language: Haskell2010