less prototype, less bad code implementation of CCHM type theory
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.3 KiB

  1. name: cubical
  2. version: 0.1.0.0
  3. -- synopsis:
  4. -- description:
  5. homepage: https://github.com/plt-hokusai/cubical#readme
  6. license: BSD3
  7. license-file: LICENSE
  8. author: Abigail Magalhães
  9. maintainer: [email protected]
  10. copyright: 2021 Abigail Magalhães
  11. category: Web
  12. build-type: Simple
  13. cabal-version: >=2.0
  14. extra-source-files: README.md
  15. executable cubical
  16. hs-source-dirs: src
  17. main-is: Main.hs
  18. default-language: Haskell2010
  19. build-depends: base ^>= 4.14
  20. , mtl ^>= 2.2
  21. , text ^>= 1.2
  22. , array ^>= 0.5
  23. , containers ^>= 0.6
  24. , bytestring ^>= 0.10
  25. other-modules: Presyntax.Lexer
  26. , Presyntax.Parser
  27. , Presyntax.Tokens
  28. , Presyntax.Presyntax
  29. , Syntax
  30. , Elab
  31. , Elab.Eval
  32. , Elab.Monad
  33. build-tool-depends: alex:alex >= 3.2.4 && < 4.0
  34. , happy:happy >= 1.19.12 && < 2.0
  35. ghc-options: -Wall -Wextra -Wno-name-shadowing