2019-08-25 19:28:10 +02:00
|
|
|
cabal-version: 1.12
|
|
|
|
|
|
|
|
-- This file has been generated from package.yaml by hpack version 0.31.2.
|
|
|
|
--
|
|
|
|
-- see: https://github.com/sol/hpack
|
|
|
|
--
|
2019-09-15 19:00:28 +02:00
|
|
|
-- hash: 86b7d3047b95fc65f4c6489a21e8c89883981c8c5bd552b5ea83aaf70de8a7cf
|
2019-08-25 19:28:10 +02:00
|
|
|
|
|
|
|
name: xanthous
|
|
|
|
version: 0.1.0.0
|
|
|
|
synopsis: A WIP TUI RPG
|
|
|
|
description: Please see the README on GitHub at <https://github.com/glittershark/xanthous>
|
|
|
|
category: Game
|
|
|
|
homepage: https://github.com/glittershark/xanthous#readme
|
|
|
|
bug-reports: https://github.com/glittershark/xanthous/issues
|
|
|
|
author: Griffin Smith
|
|
|
|
maintainer: root@gws.fyi
|
|
|
|
copyright: 2019 Griffin Smith
|
|
|
|
license: GPL-3
|
|
|
|
license-file: LICENSE
|
|
|
|
build-type: Simple
|
|
|
|
extra-source-files:
|
|
|
|
README.org
|
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/glittershark/xanthous
|
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules:
|
2019-09-01 19:54:27 +02:00
|
|
|
Data.Aeson.Generic.DerivingVia
|
2019-08-25 19:28:10 +02:00
|
|
|
Main
|
|
|
|
Xanthous.App
|
2019-08-31 19:17:27 +02:00
|
|
|
Xanthous.Command
|
|
|
|
Xanthous.Data
|
|
|
|
Xanthous.Data.EntityMap
|
2019-09-15 19:00:28 +02:00
|
|
|
Xanthous.Data.EntityMap.Graphics
|
2019-08-31 19:17:27 +02:00
|
|
|
Xanthous.Entities
|
2019-09-10 02:54:33 +02:00
|
|
|
Xanthous.Entities.Arbitrary
|
2019-08-31 19:17:27 +02:00
|
|
|
Xanthous.Entities.Character
|
2019-09-02 20:45:36 +02:00
|
|
|
Xanthous.Entities.Creature
|
2019-09-10 02:54:33 +02:00
|
|
|
Xanthous.Entities.Draw.Util
|
|
|
|
Xanthous.Entities.Environment
|
2019-09-02 19:56:25 +02:00
|
|
|
Xanthous.Entities.Raws
|
|
|
|
Xanthous.Entities.RawTypes
|
2019-08-25 19:28:10 +02:00
|
|
|
Xanthous.Game
|
|
|
|
Xanthous.Game.Draw
|
2019-09-07 20:49:59 +02:00
|
|
|
Xanthous.Generators
|
|
|
|
Xanthous.Generators.CaveAutomata
|
2019-09-13 21:24:05 +02:00
|
|
|
Xanthous.Generators.LevelContents
|
2019-09-07 20:49:59 +02:00
|
|
|
Xanthous.Generators.Util
|
2019-09-01 19:54:27 +02:00
|
|
|
Xanthous.Messages
|
2019-09-01 22:21:45 +02:00
|
|
|
Xanthous.Monad
|
2019-08-31 19:17:27 +02:00
|
|
|
Xanthous.Orphans
|
2019-08-25 19:28:10 +02:00
|
|
|
Xanthous.Prelude
|
2019-09-01 19:54:27 +02:00
|
|
|
Xanthous.Random
|
2019-08-25 19:28:10 +02:00
|
|
|
Xanthous.Resource
|
2019-08-31 19:17:27 +02:00
|
|
|
Xanthous.Util
|
2019-09-15 19:00:28 +02:00
|
|
|
Xanthous.Util.Graphics
|
2019-08-25 19:28:10 +02:00
|
|
|
other-modules:
|
|
|
|
Paths_xanthous
|
|
|
|
hs-source-dirs:
|
|
|
|
src
|
2019-09-01 19:54:27 +02:00
|
|
|
default-extensions: BlockArguments ConstraintKinds DataKinds DeriveAnyClass DeriveGeneric DerivingStrategies DerivingVia FlexibleContexts FlexibleInstances FunctionalDependencies GADTSyntax GeneralizedNewtypeDeriving KindSignatures LambdaCase NoImplicitPrelude NoStarIsType OverloadedStrings PolyKinds RankNTypes ScopedTypeVariables TupleSections TypeApplications TypeFamilies TypeOperators
|
|
|
|
ghc-options: -Wall
|
2019-08-25 19:28:10 +02:00
|
|
|
build-depends:
|
2019-09-01 19:54:27 +02:00
|
|
|
MonadRandom
|
|
|
|
, QuickCheck
|
|
|
|
, aeson
|
2019-09-07 20:49:59 +02:00
|
|
|
, array
|
2019-08-25 19:28:10 +02:00
|
|
|
, base
|
|
|
|
, brick
|
2019-08-31 19:17:27 +02:00
|
|
|
, checkers
|
2019-08-25 19:28:10 +02:00
|
|
|
, classy-prelude
|
|
|
|
, constraints
|
|
|
|
, containers
|
|
|
|
, data-default
|
|
|
|
, deepseq
|
2019-09-01 19:54:27 +02:00
|
|
|
, file-embed
|
2019-09-02 19:56:25 +02:00
|
|
|
, filepath
|
2019-08-31 19:17:27 +02:00
|
|
|
, generic-arbitrary
|
|
|
|
, generic-monoid
|
|
|
|
, groups
|
2019-08-25 19:28:10 +02:00
|
|
|
, lens
|
2019-09-01 19:54:27 +02:00
|
|
|
, megaparsec
|
2019-08-25 19:28:10 +02:00
|
|
|
, mtl
|
2019-09-07 20:49:59 +02:00
|
|
|
, optparse-applicative
|
2019-09-01 19:54:27 +02:00
|
|
|
, quickcheck-instances
|
|
|
|
, quickcheck-text
|
|
|
|
, random
|
|
|
|
, raw-strings-qq
|
|
|
|
, reflection
|
|
|
|
, stache
|
|
|
|
, tomland
|
2019-08-25 19:28:10 +02:00
|
|
|
, vty
|
2019-09-01 19:54:27 +02:00
|
|
|
, yaml
|
2019-08-25 19:28:10 +02:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
executable xanthous
|
|
|
|
main-is: Main.hs
|
|
|
|
other-modules:
|
2019-09-01 19:54:27 +02:00
|
|
|
Data.Aeson.Generic.DerivingVia
|
2019-08-25 19:28:10 +02:00
|
|
|
Xanthous.App
|
2019-08-31 19:17:27 +02:00
|
|
|
Xanthous.Command
|
|
|
|
Xanthous.Data
|
|
|
|
Xanthous.Data.EntityMap
|
2019-09-15 19:00:28 +02:00
|
|
|
Xanthous.Data.EntityMap.Graphics
|
2019-08-31 19:17:27 +02:00
|
|
|
Xanthous.Entities
|
2019-09-10 02:54:33 +02:00
|
|
|
Xanthous.Entities.Arbitrary
|
2019-08-31 19:17:27 +02:00
|
|
|
Xanthous.Entities.Character
|
2019-09-02 20:45:36 +02:00
|
|
|
Xanthous.Entities.Creature
|
2019-09-10 02:54:33 +02:00
|
|
|
Xanthous.Entities.Draw.Util
|
|
|
|
Xanthous.Entities.Environment
|
2019-09-02 19:56:25 +02:00
|
|
|
Xanthous.Entities.Raws
|
|
|
|
Xanthous.Entities.RawTypes
|
2019-08-25 19:28:10 +02:00
|
|
|
Xanthous.Game
|
|
|
|
Xanthous.Game.Draw
|
2019-09-07 20:49:59 +02:00
|
|
|
Xanthous.Generators
|
|
|
|
Xanthous.Generators.CaveAutomata
|
2019-09-13 21:24:05 +02:00
|
|
|
Xanthous.Generators.LevelContents
|
2019-09-07 20:49:59 +02:00
|
|
|
Xanthous.Generators.Util
|
2019-09-01 19:54:27 +02:00
|
|
|
Xanthous.Messages
|
2019-09-01 22:21:45 +02:00
|
|
|
Xanthous.Monad
|
2019-08-31 19:17:27 +02:00
|
|
|
Xanthous.Orphans
|
2019-08-25 19:28:10 +02:00
|
|
|
Xanthous.Prelude
|
2019-09-01 19:54:27 +02:00
|
|
|
Xanthous.Random
|
2019-08-25 19:28:10 +02:00
|
|
|
Xanthous.Resource
|
2019-08-31 19:17:27 +02:00
|
|
|
Xanthous.Util
|
2019-09-15 19:00:28 +02:00
|
|
|
Xanthous.Util.Graphics
|
2019-08-25 19:28:10 +02:00
|
|
|
Paths_xanthous
|
|
|
|
hs-source-dirs:
|
|
|
|
src
|
2019-09-01 19:54:27 +02:00
|
|
|
default-extensions: BlockArguments ConstraintKinds DataKinds DeriveAnyClass DeriveGeneric DerivingStrategies DerivingVia FlexibleContexts FlexibleInstances FunctionalDependencies GADTSyntax GeneralizedNewtypeDeriving KindSignatures LambdaCase NoImplicitPrelude NoStarIsType OverloadedStrings PolyKinds RankNTypes ScopedTypeVariables TupleSections TypeApplications TypeFamilies TypeOperators
|
|
|
|
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
|
2019-08-25 19:28:10 +02:00
|
|
|
build-depends:
|
2019-09-01 19:54:27 +02:00
|
|
|
MonadRandom
|
|
|
|
, QuickCheck
|
|
|
|
, aeson
|
2019-09-07 20:49:59 +02:00
|
|
|
, array
|
2019-08-25 19:28:10 +02:00
|
|
|
, base
|
|
|
|
, brick
|
2019-08-31 19:17:27 +02:00
|
|
|
, checkers
|
2019-08-25 19:28:10 +02:00
|
|
|
, classy-prelude
|
|
|
|
, constraints
|
|
|
|
, containers
|
|
|
|
, data-default
|
|
|
|
, deepseq
|
2019-09-01 19:54:27 +02:00
|
|
|
, file-embed
|
2019-09-02 19:56:25 +02:00
|
|
|
, filepath
|
2019-08-31 19:17:27 +02:00
|
|
|
, generic-arbitrary
|
|
|
|
, generic-monoid
|
|
|
|
, groups
|
2019-08-25 19:28:10 +02:00
|
|
|
, lens
|
2019-09-01 19:54:27 +02:00
|
|
|
, megaparsec
|
2019-08-25 19:28:10 +02:00
|
|
|
, mtl
|
2019-09-07 20:49:59 +02:00
|
|
|
, optparse-applicative
|
2019-09-01 19:54:27 +02:00
|
|
|
, quickcheck-instances
|
|
|
|
, quickcheck-text
|
|
|
|
, random
|
|
|
|
, raw-strings-qq
|
|
|
|
, reflection
|
|
|
|
, stache
|
|
|
|
, tomland
|
2019-08-25 19:28:10 +02:00
|
|
|
, vty
|
|
|
|
, xanthous
|
2019-09-01 19:54:27 +02:00
|
|
|
, yaml
|
2019-08-25 19:28:10 +02:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
test-suite test
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: Spec.hs
|
|
|
|
other-modules:
|
2019-08-31 19:17:27 +02:00
|
|
|
Test.Prelude
|
|
|
|
Xanthous.Data.EntityMapSpec
|
|
|
|
Xanthous.DataSpec
|
2019-09-02 19:56:25 +02:00
|
|
|
Xanthous.Entities.RawsSpec
|
2019-08-31 19:17:27 +02:00
|
|
|
Xanthous.GameSpec
|
2019-09-07 20:49:59 +02:00
|
|
|
Xanthous.Generators.UtilSpec
|
2019-09-01 19:54:27 +02:00
|
|
|
Xanthous.MessageSpec
|
|
|
|
Xanthous.OrphansSpec
|
2019-09-15 19:00:28 +02:00
|
|
|
Xanthous.Util.GraphicsSpec
|
2019-08-25 19:28:10 +02:00
|
|
|
Paths_xanthous
|
|
|
|
hs-source-dirs:
|
|
|
|
test
|
2019-09-01 19:54:27 +02:00
|
|
|
default-extensions: BlockArguments ConstraintKinds DataKinds DeriveAnyClass DeriveGeneric DerivingStrategies DerivingVia FlexibleContexts FlexibleInstances FunctionalDependencies GADTSyntax GeneralizedNewtypeDeriving KindSignatures LambdaCase NoImplicitPrelude NoStarIsType OverloadedStrings PolyKinds RankNTypes ScopedTypeVariables TupleSections TypeApplications TypeFamilies TypeOperators
|
|
|
|
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
|
2019-08-25 19:28:10 +02:00
|
|
|
build-depends:
|
2019-09-01 19:54:27 +02:00
|
|
|
MonadRandom
|
|
|
|
, QuickCheck
|
|
|
|
, aeson
|
2019-09-07 20:49:59 +02:00
|
|
|
, array
|
2019-08-25 19:28:10 +02:00
|
|
|
, base
|
|
|
|
, brick
|
2019-08-31 19:17:27 +02:00
|
|
|
, checkers
|
2019-08-25 19:28:10 +02:00
|
|
|
, classy-prelude
|
|
|
|
, constraints
|
|
|
|
, containers
|
|
|
|
, data-default
|
|
|
|
, deepseq
|
2019-09-01 19:54:27 +02:00
|
|
|
, file-embed
|
2019-09-02 19:56:25 +02:00
|
|
|
, filepath
|
2019-08-31 19:17:27 +02:00
|
|
|
, generic-arbitrary
|
|
|
|
, generic-monoid
|
|
|
|
, groups
|
2019-08-25 19:28:10 +02:00
|
|
|
, lens
|
2019-08-31 19:17:27 +02:00
|
|
|
, lens-properties
|
2019-09-01 19:54:27 +02:00
|
|
|
, megaparsec
|
2019-08-25 19:28:10 +02:00
|
|
|
, mtl
|
2019-09-07 20:49:59 +02:00
|
|
|
, optparse-applicative
|
2019-09-01 19:54:27 +02:00
|
|
|
, quickcheck-instances
|
|
|
|
, quickcheck-text
|
|
|
|
, random
|
|
|
|
, raw-strings-qq
|
|
|
|
, reflection
|
|
|
|
, stache
|
2019-08-25 19:28:10 +02:00
|
|
|
, tasty
|
|
|
|
, tasty-hunit
|
|
|
|
, tasty-quickcheck
|
2019-09-01 19:54:27 +02:00
|
|
|
, tomland
|
2019-08-25 19:28:10 +02:00
|
|
|
, vty
|
|
|
|
, xanthous
|
2019-09-01 19:54:27 +02:00
|
|
|
, yaml
|
2019-08-25 19:28:10 +02:00
|
|
|
default-language: Haskell2010
|