cabal-version: 3.0 name: gecco version: 0.1.0 synopsis: simple programming language to play with codegen license: ISC author: rachel samuelsson maintainer: depsterr@protonmail.com category: Language build-type: Simple executable gecco main-is: Main.hs build-depends: base , gecco hs-source-dirs: app default-language: GHC2021 default-extensions: LambdaCase ghc-options: -O2 -fexpose-all-unfoldings -fspecialize-aggressively -threaded "-with-rtsopts=-A32M -N8" library exposed-modules: Core , Val , Syn , Eval , Type , Parse , TestProg , CompChez build-depends: base , megaparsec , parser-combinators , text hs-source-dirs: src default-language: GHC2021 default-extensions: LambdaCase ghc-options: -O2 -fexpose-all-unfoldings -fspecialize-aggressively -threaded