tricu/tricu.cabal

66 lines
1.2 KiB
Plaintext
Raw Normal View History

cabal-version: 1.12
2024-12-29 08:29:25 -06:00
name: tricu
2025-01-06 09:14:04 -06:00
version: 0.5.0
2024-12-27 14:10:13 -06:00
description: A micro-language for exploring Tree Calculus
author: James Eversole
maintainer: james@eversole.co
copyright: James Eversole
license: ISC
license-file: LICENSE
build-type: Simple
extra-source-files:
2024-12-18 19:41:12 -06:00
README.md
2024-12-29 08:29:25 -06:00
executable tricu
main-is: Main.hs
hs-source-dirs:
src
default-extensions:
DeriveDataTypeable
OverloadedStrings
ghc-options: -threaded -rtsopts -with-rtsopts=-N -optl-pthread -fPIC
build-depends:
base >=4.7
, cmdargs
, containers
, haskeline
, megaparsec
, mtl
, text
other-modules:
Eval
FileEval
Lexer
Parser
REPL
Research
default-language: Haskell2010
2024-12-29 08:29:25 -06:00
test-suite tricu-tests
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test, src
default-extensions:
DeriveDataTypeable
OverloadedStrings
build-depends:
base
, cmdargs
, containers
, haskeline
, megaparsec
, mtl
, tasty
, tasty-hunit
, tasty-quickcheck
, text
default-language: Haskell2010
other-modules:
Eval
FileEval
Lexer
Parser
REPL
Research