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

84 lines
2.7 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
2020-02-04 21:23:26 +03:00
exposed-modules:
AST.Deserialize
AST.Element
AST.GenerateSyntax
AST.Grammar.TH
AST.Marshal.JSON
2020-04-28 00:41:41 +03:00
AST.Parse
AST.Token
2020-02-04 21:23:26 +03:00
AST.Traversable1
AST.Traversable1.Class
AST.Unmarshal
2020-02-14 19:33:01 +03:00
AST.TestHelpers
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
, bytestring ^>= 0.10.9
2020-02-05 01:31:48 +03:00
, containers >= 0.6.0.1
, directory ^>= 1.3.3.2
, filepath ^>= 1.4.1
, fused-effects ^>= 1.0
2020-02-08 03:36:08 +03:00
, tree-sitter ^>= 0.9.0.0
, semantic-source ^>= 0.1.0
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
2020-02-08 03:36:08 +03:00
, tree-sitter-python ^>= 0.9.0.1
2020-01-28 03:13:31 +03:00
, text ^>= 1.2.3.1
2020-02-05 01:31:48 +03:00
, unordered-containers ^>= 0.2.10
2020-02-15 00:37:30 +03:00
, hedgehog >= 0.6 && <2
2020-02-14 19:29:25 +03:00
, pathtype ^>= 0.8.1
, Glob ^>= 0.10.0
, attoparsec ^>= 0.13.2.2
, text ^>= 1.2.3
, tasty ^>= 1.2.3
, tasty-hedgehog ^>= 1.0.0.1
, tasty-hunit ^>= 0.10.0.2
2020-01-28 03:13:31 +03:00
2019-09-10 21:07:58 +03:00
hs-source-dirs: src
default-language: Haskell2010