MUD.hs/package.yaml

65 lines
1.4 KiB
YAML
Raw Permalink Normal View History

2024-05-18 01:47:18 +00:00
name: mud
version: 0.1.0.0
github: "mathematicalmichael/mud"
license: BSD-3-Clause
author: "Michael Pilosov"
maintainer: "consistentbayes@gmail.com"
copyright: "2024 Michael Pilosov"
extra-source-files:
- README.md
# Metadata used when publishing your package
# synopsis: Short description of your package
# category: Uncategorized
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: Please see the README on GitHub at <https://github.com/mathematicalmichael/mud#readme>
dependencies:
- base >= 4.7 && < 5
- random
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wpartial-fields
- -Wredundant-constraints
library:
source-dirs: src
exposed-modules:
- MUD
- RandomUtils
executables:
mud-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- mud
tests:
test-suite:
main: Main.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- mud
- random