1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 08:54:07 +03:00
semantic/semantic-core/semantic-core.cabal

80 lines
2.2 KiB
Plaintext
Raw Normal View History

2019-06-13 21:20:22 +03:00
cabal-version: 2.4
2019-06-03 18:34:15 +03:00
name: semantic-core
version: 0.0.0.0
synopsis: Semantic core intermediate language
2019-06-11 18:26:47 +03:00
description: Core intermediate language for program analysis using abstract definitional interpretation.
2019-06-11 18:07:57 +03:00
homepage: https://github.com/github/semantic/tree/master/semantic-core#readme
2019-06-11 18:23:38 +03:00
bug-reports: https://github.com/github/semantic/issues
2019-06-03 18:34:15 +03:00
license: MIT
license-file: LICENSE
2019-06-11 18:07:57 +03:00
author: The Semantic authors
maintainer: opensource+semantic@github.com
copyright: (c) 2019 GitHub, Inc.
2019-06-03 18:34:15 +03:00
category: Language
build-type: Simple
2019-06-11 18:25:20 +03:00
stability: alpha
2019-06-03 18:34:15 +03:00
extra-source-files: README.md
2019-10-10 21:48:23 +03:00
tested-with:
GHC == 8.6.5
2019-06-03 18:34:15 +03:00
common common
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-06-03 18:34:15 +03:00
library
import: common
hs-source-dirs: src
2019-10-10 21:42:41 +03:00
exposed-modules:
Core.Core
2019-10-11 20:50:40 +03:00
Core.Parser
Core.Pretty
2019-10-11 17:46:59 +03:00
Core.Eval
Core.Name
2019-10-10 21:43:01 +03:00
build-depends:
base >= 4.12 && < 5
2019-10-10 21:43:01 +03:00
, fused-effects ^>= 0.5
, fused-syntax
2019-10-10 21:43:01 +03:00
, parsers ^>= 0.12.10
2019-10-11 00:33:56 +03:00
, pathtype ^>= 0.8.1
2019-10-10 21:43:01 +03:00
, prettyprinter ^>= 1.2.1
, prettyprinter-ansi-terminal ^>= 1.1.1
, semantic-analysis ^>= 0
2019-10-10 21:43:01 +03:00
, semantic-source ^>= 0
, text ^>= 1.2.3.1
, trifecta ^>= 2
, unordered-containers ^>= 0.2.10
2019-06-03 18:34:15 +03:00
2019-10-10 21:51:40 +03:00
test-suite test
import: common
type: exitcode-stdio-1.0
hs-source-dirs: test
2019-10-11 01:05:50 +03:00
main-is: Test.hs
other-modules: Generators
build-depends:
base
, semantic-analysis
, semantic-core
, semantic-source ^>= 0
, fused-effects
2019-10-11 03:43:00 +03:00
, fused-syntax
, hedgehog ^>= 1
, tasty >= 1.2 && <2
, tasty-hedgehog ^>= 1.0.0.1
, tasty-hunit >= 0.10 && <1
, trifecta