Guest User

package.yaml

a guest
Oct 11th, 2022
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. name: cssart
  2. version: 0.1.0.0
  3. github: "githubuser/cssart"
  4. license: BSD3
  5. author: "Author name here"
  6. maintainer: "[email protected]"
  7. copyright: "2022 Author name here"
  8.  
  9. extra-source-files:
  10. - README.md
  11. - CHANGELOG.md
  12.  
  13. # Metadata used when publishing your package
  14. # synopsis: Short description of your package
  15. # category: Web
  16.  
  17. # To avoid duplicated efforts in documentation and dealing with the
  18. # complications of embedding Haddock markup inside cabal files, it is
  19. # common to point users to the README.md file.
  20. description: Please see the README on GitHub at <https://github.com/githubuser/cssart#readme>
  21.  
  22. dependencies:
  23. - base >= 4.7 && < 5
  24.  
  25. ghc-options:
  26. - -Wall
  27. - -Wcompat
  28. - -Widentities
  29. - -Wincomplete-record-updates
  30. - -Wincomplete-uni-patterns
  31. - -Wmissing-export-lists
  32. - -Wmissing-home-modules
  33. - -Wpartial-fields
  34. - -Wredundant-constraints
  35.  
  36. library:
  37. source-dirs: src
  38.  
  39. executables:
  40. cssart-exe:
  41. main: Main.hs
  42. source-dirs: app
  43. ghc-options:
  44. - -threaded
  45. - -rtsopts
  46. - -with-rtsopts=-N
  47. dependencies:
  48. - cssart
  49.  
  50. tests:
  51. cssart-test:
  52. main: Spec.hs
  53. source-dirs: test
  54. ghc-options:
  55. - -threaded
  56. - -rtsopts
  57. - -with-rtsopts=-N
  58. dependencies:
  59. - cssart
  60.  
Add Comment
Please, Sign In to add comment