a01fe5c06f
The following changes in dependencies of xanthous broke the build and have been fixed in this CL. Thus we can reenable CI for xanthous. * random 1.2.0 removed the Read instance for StdGen, so we need use System.Random.Internal to un-newtype StdGen into an SMGen in the appropriate places as that type still has a Show and Read instance. Requires a new direct dependency on splitmix as well. * witherable 4.0 renamed Data.Witherable into Witherable and no longer exports Filter. * random 1.2.0 probably also broke the Function instance for GameState which contains a StdGen. I'm not exactly sure which change exactly triggered this, but the fix is easy enough: We implement a Function instance for SMGen using functionShow allowing us to write a Function instance for StdGen using functionMap. I've put these instances into Xanthous.Orphans. * hgeometry 0.12.0.0 removes the triangulationEdges function (which is also not mentioned in the changelog, so I'm not sure if there's a replacement yet). Fix by pinning to 0.11.0.0 for now. * hedgehog-classes: relax bounds on semirings Change-Id: I3617d8916d753b386c9fa80062be6bcbdfee0131 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2607 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi>
153 lines
2.3 KiB
YAML
153 lines
2.3 KiB
YAML
name: xanthous
|
|
version: 0.1.0.0
|
|
github: "glittershark/xanthous"
|
|
license: GPL-3
|
|
author: "Griffin Smith"
|
|
maintainer: "root@gws.fyi"
|
|
copyright: "2019 Griffin Smith"
|
|
|
|
extra-source-files:
|
|
- README.org
|
|
|
|
synopsis: A WIP TUI RPG
|
|
category: Game
|
|
|
|
description: Please see the README on GitHub at <https://github.com/glittershark/xanthous>
|
|
|
|
dependencies:
|
|
- base
|
|
|
|
- aeson
|
|
- array
|
|
- async
|
|
- QuickCheck
|
|
- quickcheck-text
|
|
- quickcheck-instances
|
|
- brick
|
|
- bifunctors
|
|
- checkers
|
|
- classy-prelude
|
|
- comonad
|
|
- comonad-extras
|
|
- constraints
|
|
- containers
|
|
- criterion
|
|
- data-default
|
|
- deepseq
|
|
- directory
|
|
- fgl
|
|
- fgl-arbitrary
|
|
- file-embed
|
|
- filepath
|
|
- generic-arbitrary
|
|
- generic-monoid
|
|
- generic-lens
|
|
- groups
|
|
- hgeometry
|
|
- hgeometry-combinatorial
|
|
- JuicyPixels
|
|
- lens
|
|
- lifted-async
|
|
- linear
|
|
- megaparsec
|
|
- mmorph
|
|
- monad-control
|
|
- MonadRandom
|
|
- mtl
|
|
- optparse-applicative
|
|
- parallel
|
|
- parser-combinators
|
|
- pointed
|
|
- random
|
|
- random-fu
|
|
- random-extras
|
|
- random-source
|
|
- raw-strings-qq
|
|
- reflection
|
|
- Rasterific
|
|
- splitmix
|
|
- streams
|
|
- stache
|
|
- semigroupoids
|
|
- tomland
|
|
- transformers
|
|
- text
|
|
- text-zipper
|
|
- vector
|
|
- vty
|
|
- witherable
|
|
- yaml
|
|
- zlib
|
|
|
|
default-extensions:
|
|
- BlockArguments
|
|
- ConstraintKinds
|
|
- DataKinds
|
|
- DeriveAnyClass
|
|
- DeriveGeneric
|
|
- DerivingStrategies
|
|
- DerivingVia
|
|
- FlexibleContexts
|
|
- FlexibleInstances
|
|
- FunctionalDependencies
|
|
- GADTSyntax
|
|
- GeneralizedNewtypeDeriving
|
|
- KindSignatures
|
|
- LambdaCase
|
|
- MultiWayIf
|
|
- NoImplicitPrelude
|
|
- NoStarIsType
|
|
- OverloadedStrings
|
|
- PolyKinds
|
|
- RankNTypes
|
|
- ScopedTypeVariables
|
|
- TupleSections
|
|
- TypeApplications
|
|
- TypeFamilies
|
|
- TypeOperators
|
|
- ViewPatterns
|
|
|
|
ghc-options:
|
|
- -Wall
|
|
|
|
library:
|
|
source-dirs: src
|
|
|
|
executable:
|
|
source-dirs: src
|
|
main: Main.hs
|
|
dependencies:
|
|
- xanthous
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
- -O2
|
|
|
|
tests:
|
|
test:
|
|
main: Spec.hs
|
|
source-dirs: test
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
- -O0
|
|
dependencies:
|
|
- xanthous
|
|
- tasty
|
|
- tasty-hunit
|
|
- tasty-quickcheck
|
|
- lens-properties
|
|
|
|
benchmarks:
|
|
benchmark:
|
|
main: Bench.hs
|
|
source-dirs: bench
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- xanthous
|
|
- criterion
|