MUD.hs/mud.cabal
Michael Pilosov 32cdc46325 working code
2024-05-18 01:52:08 +00:00

74 lines
2.1 KiB
Plaintext

cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.36.0.
--
-- see: https://github.com/sol/hpack
name: mud
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/mathematicalmichael/mud#readme>
homepage: https://github.com/mathematicalmichael/mud#readme
bug-reports: https://github.com/mathematicalmichael/mud/issues
author: Michael Pilosov
maintainer: consistentbayes@gmail.com
copyright: 2024 Michael Pilosov
license: BSD-3-Clause
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/mathematicalmichael/mud
library
exposed-modules:
MUD
RandomUtils
other-modules:
AcceptReject
Paths_mud
autogen-modules:
Paths_mud
hs-source-dirs:
src
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints
build-depends:
base >=4.7 && <5
, random
default-language: Haskell2010
executable mud-exe
main-is: Main.hs
other-modules:
Paths_mud
autogen-modules:
Paths_mud
hs-source-dirs:
app
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, mud
, random
default-language: Haskell2010
test-suite test-suite
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
TestKDE
TestMUD
TestRandomUtils
Paths_mud
autogen-modules:
Paths_mud
hs-source-dirs:
test
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, mud
, random
default-language: Haskell2010