a type theory with equality based on setoids
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.

35 lines
1.1 KiB

  1. name: setoid
  2. version: 0.1.0.0
  3. -- synopsis:
  4. -- description:
  5. homepage: https://github.com/plt-hokusai/setoid#readme
  6. license: BSD3
  7. license-file: LICENSE
  8. author: Abigail Magalhães
  9. maintainer: [email protected]
  10. copyright: 2020 Abigail Magalhães
  11. category: Web
  12. build-type: Simple
  13. cabal-version: >=1.10
  14. extra-source-files: README.md
  15. executable setoid
  16. hs-source-dirs: src
  17. main-is: Main.hs
  18. default-language: Haskell2010
  19. build-depends: mtl
  20. , syb
  21. , base
  22. , text
  23. , ghc-prim
  24. , containers
  25. , unordered-containers
  26. other-modules: Syntax
  27. , Syntax.Pretty
  28. , Presyntax
  29. , Evaluate
  30. , Elaboration
  31. , Value
  32. , Presyntax.Lexer
  33. , Presyntax.Parser
  34. , Elaboration.Monad