2024-12-18 18:55:51 -06:00
|
|
|
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
|
2024-12-18 18:55:51 -06:00
|
|
|
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-18 18:55:51 -06:00
|
|
|
|
2024-12-29 08:29:25 -06:00
|
|
|
executable tricu
|
2024-12-18 18:55:51 -06:00
|
|
|
main-is: Main.hs
|
|
|
|
hs-source-dirs:
|
|
|
|
src
|
|
|
|
default-extensions:
|
2024-12-29 21:49:57 -06:00
|
|
|
DeriveDataTypeable
|
2024-12-18 18:55:51 -06:00
|
|
|
OverloadedStrings
|
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -optl-pthread -fPIC
|
|
|
|
build-depends:
|
|
|
|
base >=4.7
|
2024-12-29 21:49:57 -06:00
|
|
|
, cmdargs
|
2024-12-18 18:55:51 -06:00
|
|
|
, containers
|
2024-12-27 20:46:30 -06:00
|
|
|
, haskeline
|
2024-12-18 18:55:51 -06:00
|
|
|
, megaparsec
|
|
|
|
, mtl
|
2024-12-31 10:00:52 -06:00
|
|
|
, text
|
2024-12-18 18:55:51 -06:00
|
|
|
other-modules:
|
|
|
|
Eval
|
2025-01-01 08:17:05 -06:00
|
|
|
FileEval
|
2024-12-18 18:55:51 -06:00
|
|
|
Lexer
|
|
|
|
Parser
|
2024-12-20 11:38:09 -06:00
|
|
|
REPL
|
2024-12-18 18:55:51 -06:00
|
|
|
Research
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
2024-12-29 08:29:25 -06:00
|
|
|
test-suite tricu-tests
|
2024-12-18 18:55:51 -06:00
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: Spec.hs
|
|
|
|
hs-source-dirs: test, src
|
2024-12-31 10:00:52 -06:00
|
|
|
default-extensions:
|
|
|
|
DeriveDataTypeable
|
|
|
|
OverloadedStrings
|
2024-12-18 18:55:51 -06:00
|
|
|
build-depends:
|
|
|
|
base
|
2024-12-29 21:49:57 -06:00
|
|
|
, cmdargs
|
2024-12-18 18:55:51 -06:00
|
|
|
, containers
|
2024-12-27 20:46:30 -06:00
|
|
|
, haskeline
|
2024-12-18 18:55:51 -06:00
|
|
|
, megaparsec
|
|
|
|
, mtl
|
|
|
|
, tasty
|
|
|
|
, tasty-hunit
|
|
|
|
, tasty-quickcheck
|
2024-12-31 10:00:52 -06:00
|
|
|
, text
|
2024-12-18 18:55:51 -06:00
|
|
|
default-language: Haskell2010
|
|
|
|
other-modules:
|
|
|
|
Eval
|
2025-01-01 08:17:05 -06:00
|
|
|
FileEval
|
2024-12-18 18:55:51 -06:00
|
|
|
Lexer
|
|
|
|
Parser
|
2024-12-20 11:38:09 -06:00
|
|
|
REPL
|
2024-12-18 18:55:51 -06:00
|
|
|
Research
|