rename package to polysemy

This commit is contained in:
Sandy Maguire 2019-03-20 00:46:26 -04:00
parent e1061999a1
commit f2ec5b7a03
2 changed files with 11 additions and 10 deletions

2
.gitignore vendored
View File

@ -1,5 +1,5 @@
.stack-work/ .stack-work/
core-html/ core-html/
too-fast-too-free.cabal polysemy.cabal
*~ *~
*.prof *.prof

View File

@ -1,6 +1,6 @@
name: too-fast-too-free name: polysemy
version: 0.1.0.0 version: 0.1.0.0
github: "isovector/too-fast-too-free" github: "isovector/polysemy"
license: BSD3 license: BSD3
author: "Sandy Maguire" author: "Sandy Maguire"
maintainer: "sandy@sandymaguire.me" maintainer: "sandy@sandymaguire.me"
@ -17,7 +17,7 @@ extra-source-files:
# To avoid duplicated efforts in documentation and dealing with the # To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is # complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file. # common to point users to the README.md file.
description: Please see the README on GitHub at <https://github.com/isovector/too-fast-too-free#readme> description: Please see the README on GitHub at <https://github.com/isovector/polysemy#readme>
dependencies: dependencies:
- base >= 4.7 && < 5 - base >= 4.7 && < 5
@ -46,7 +46,7 @@ library:
else: {} else: {}
executables: executables:
too-fast-too-free-exe: polysemy-exe:
main: Main.hs main: Main.hs
source-dirs: app source-dirs: app
ghc-options: ghc-options:
@ -54,7 +54,7 @@ executables:
- -rtsopts - -rtsopts
- -with-rtsopts=-N - -with-rtsopts=-N
dependencies: dependencies:
- too-fast-too-free - polysemy
when: when:
- condition: flag(dump-core) - condition: flag(dump-core)
then: then:
@ -66,7 +66,7 @@ executables:
else: {} else: {}
tests: tests:
too-fast-too-free-test: polysemy-test:
main: Main.hs main: Main.hs
source-dirs: test source-dirs: test
ghc-options: ghc-options:
@ -74,12 +74,12 @@ tests:
- -rtsopts - -rtsopts
- -with-rtsopts=-N - -with-rtsopts=-N
dependencies: dependencies:
- too-fast-too-free - polysemy
- inspection-testing - inspection-testing
- hspec - hspec
benchmarks: benchmarks:
too-fast-too-free-bench: polysemy-bench:
source-dirs: bench source-dirs: bench
main: countDown.hs main: countDown.hs
dependencies: dependencies:
@ -87,4 +87,5 @@ benchmarks:
- free - free
- freer-simple - freer-simple
- mtl - mtl
- too-fast-too-free - polysemy