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.

48 lines
1.6 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. , shake ^>= 0.19.5
  23. , deepseq ^>= 1.4
  24. , binary ^>= 0.8
  25. , hashable ^>= 1.3
  26. , containers ^>= 0.6
  27. , bytestring ^>= 0.10
  28. , pretty-show ^>= 1.10
  29. , cryptohash-sha1 ^>= 0.11
  30. , unordered-containers ^>= 0.2
  31. other-modules:
  32. Frontend.Autogen.Lexer,
  33. Frontend.Autogen.Parser,
  34. Frontend.Lexer.Tokens,
  35. Frontend.Lexer.Wrapper,
  36. Frontend.Lexer.Unicode,
  37. Frontend.Parser.Posn,
  38. Frontend.Parser.Foreign,
  39. Frontend.Syntax,
  40. Frontend.Syntax.Var,
  41. Main.Queries,
  42. Main.Rules,
  43. Errors
  44. build-tool-depends: alex:alex >= 3.2.4 && < 4.0
  45. , happy:happy >= 1.19.12 && < 2.0