Prototype, extremely bad code implementation of CCHM Cubical 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.

34 lines
1.0 KiB

3 years ago
  1. name: indexed
  2. version: 0.1.0.0
  3. -- synopsis:
  4. -- description:
  5. homepage: https://github.com/plt-hokusai/indexed#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: >=1.10
  14. extra-source-files: README.md
  15. executable indexed
  16. hs-source-dirs: src
  17. main-is: Main.hs
  18. default-language: Haskell2010
  19. build-depends: base >= 4.7 && < 5
  20. , mtl
  21. , text
  22. , haskeline
  23. , exceptions
  24. , containers
  25. , megaparsec
  26. other-modules: Syntax
  27. , Eval
  28. , Elab
  29. , Systems
  30. , Presyntax
  31. , Presyntax.Parser
  32. , Presyntax.Lexer