1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00
semantic/semantic-core/semantic-core.cabal

60 lines
2.2 KiB
Plaintext
Raw Normal View History

2019-06-03 18:34:15 +03:00
cabal-version: 2.2
name: semantic-core
version: 0.0.0.0
synopsis: Semantic core intermediate language
-- description:
homepage: https://github.com/github/semantic-core
-- bug-reports:
license: MIT
license-file: LICENSE
author: Rob Rix
maintainer: robrix@github.com
-- copyright:
category: Language
build-type: Simple
extra-source-files: README.md
tested-with: GHC == 8.6.4
library
2019-06-03 18:38:42 +03:00
exposed-modules: Analysis.Concrete
2019-06-03 18:40:37 +03:00
, Analysis.Eval
2019-06-03 18:38:42 +03:00
, Analysis.FlowInsensitive
2019-06-03 18:34:15 +03:00
, Analysis.ImportGraph
, Analysis.ScopeGraph
2019-06-03 18:38:42 +03:00
, Analysis.Typecheck
2019-06-03 18:34:15 +03:00
, Control.Effect.Readline
, Data.File
, Data.Loc
, Data.Stack
2019-06-03 18:34:15 +03:00
, Semantic.Core
, Semantic.Name
-- other-modules:
-- other-extensions:
build-depends: algebraic-graphs ^>= 0.3
, base >= 4.11 && < 5
, containers ^>= 0.6
, directory ^>= 1.3
, filepath ^>= 1.4
, fused-effects ^>= 0.4
, haskeline ^>= 0.7.5
, prettyprinter ^>= 1.2.1
, semigroupoids ^>= 5.3
, transformers ^>= 0.5.6
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
if (impl(ghc >= 8.6))
ghc-options: -Wno-star-is-type
test-suite doctest
type: exitcode-stdio-1.0
main-is: Doctest.hs
build-depends: base >=4.9 && <4.13
, doctest >=0.7 && <1.0
, QuickCheck
, semantic-core
hs-source-dirs: test
default-language: Haskell2010