Abbie's Haskell compiler
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: ahc
  2. version: 0.1.0.0
  3. homepage: https://github.com/plt-hokusai/ahc#readme
  4. license: BSD3
  5. license-file: LICENSE
  6. author: Abigail Magalhães
  7. maintainer: [email protected]
  8. copyright: 2021 Abigail Magalhães
  9. category: Web
  10. build-type: Simple
  11. cabal-version: >=2.0
  12. extra-source-files: README.md
  13. executable ahc
  14. hs-source-dirs: src
  15. main-is: Main.hs
  16. default-language: Haskell2010
  17. build-depends: base ^>= 4.14
  18. , mtl ^>= 2.2
  19. , syb ^>= 0.7
  20. , text ^>= 1.2
  21. , array ^>= 0.5
  22. , containers ^>= 0.6
  23. , bytestring ^>= 0.10
  24. , pretty-show ^>= 1.10
  25. other-modules:
  26. Frontend.Autogen.Lexer,
  27. Frontend.Autogen.Parser,
  28. Frontend.Lexer.Tokens,
  29. Frontend.Parser.Posn,
  30. Frontend.Syntax
  31. build-tool-depends: alex:alex >= 3.2.4 && < 4.0
  32. , happy:happy >= 1.19.12 && < 2.0