perga/dependent-lambda.cabal

66 lines
1.7 KiB
Text
Raw Normal View History

2024-10-05 13:31:09 -07:00
cabal-version: 3.0
2024-11-11 23:39:29 -08:00
name: dependent-lambda
2024-10-05 13:31:09 -07:00
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
license: GPL-3.0-or-later
license-file: LICENSE
author: William Ball
maintainer: williampi103@gmail.com
category: Math
build-type: Simple
extra-doc-files: CHANGELOG.md
, README.md
2024-10-05 13:31:09 -07:00
-- Extra source files to be distributed with the package, such as examples, or a tutorial module.
-- extra-source-files:
library dependent-lambda-lib
exposed-modules: Check
2024-10-05 13:31:09 -07:00
Parser
Expr
2024-10-05 13:31:09 -07:00
hs-source-dirs: lib
2024-10-05 13:31:09 -07:00
build-depends: base ^>=4.19.1.0
, megaparsec
, text
, parser-combinators
2024-10-05 16:04:13 -07:00
, mtl
default-language: Haskell2010
common warnings
ghc-options: -Wall
2024-10-05 13:31:09 -07:00
executable dependent-lambda
import: warnings
main-is: Main.hs
build-depends: base ^>=4.19.1.0
, dependent-lambda-lib
2024-10-05 13:31:09 -07:00
hs-source-dirs: app
default-language: Haskell2010
2024-10-05 13:31:09 -07:00
test-suite tests
type: exitcode-stdio-1.0
main-is: Tests.hs
other-modules: ExprTests
, ParserTests
, CheckTests
build-depends: base ^>=4.19.1.0
, HUnit
, dependent-lambda-lib
hs-source-dirs: tests
2024-10-05 13:31:09 -07:00
default-language: Haskell2010