2024-12-18 18:55:51 -06:00
|
|
|
cabal-version: 1.12
|
|
|
|
|
|
|
|
name: sapling
|
2024-12-27 16:30:32 -06:00
|
|
|
version: 0.4.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
|
|
|
|
|
|
|
executable sapling
|
|
|
|
main-is: Main.hs
|
|
|
|
hs-source-dirs:
|
|
|
|
src
|
|
|
|
default-extensions:
|
|
|
|
ConstraintKinds
|
2024-12-27 08:17:06 -06:00
|
|
|
DataKinds
|
2024-12-18 18:55:51 -06:00
|
|
|
DeriveGeneric
|
|
|
|
FlexibleContexts
|
|
|
|
FlexibleInstances
|
|
|
|
GeneralizedNewtypeDeriving
|
|
|
|
OverloadedStrings
|
|
|
|
ScopedTypeVariables
|
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -optl-pthread -fPIC
|
|
|
|
build-depends:
|
|
|
|
base >=4.7
|
|
|
|
, containers
|
2024-12-27 20:46:30 -06:00
|
|
|
, haskeline
|
2024-12-18 18:55:51 -06:00
|
|
|
, megaparsec
|
|
|
|
, mtl
|
|
|
|
other-modules:
|
|
|
|
Eval
|
|
|
|
Lexer
|
2024-12-27 16:30:32 -06:00
|
|
|
Library
|
2024-12-18 18:55:51 -06:00
|
|
|
Parser
|
2024-12-20 11:38:09 -06:00
|
|
|
REPL
|
2024-12-18 18:55:51 -06:00
|
|
|
Research
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
test-suite sapling-tests
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: Spec.hs
|
|
|
|
hs-source-dirs: test, src
|
|
|
|
build-depends:
|
|
|
|
base
|
|
|
|
, 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
|
|
|
|
default-language: Haskell2010
|
|
|
|
other-modules:
|
|
|
|
Eval
|
|
|
|
Lexer
|
2024-12-27 16:30:32 -06:00
|
|
|
Library
|
2024-12-18 18:55:51 -06:00
|
|
|
Parser
|
2024-12-20 11:38:09 -06:00
|
|
|
REPL
|
2024-12-18 18:55:51 -06:00
|
|
|
Research
|