require-0.2.0: package.yaml
name: require
version: '0.2.0'
github: "theam/require"
license: Apache-2.0
author: "The Agile Monkeys"
maintainer: "hackers@theam.io"
copyright: "2018 Theam"
synopsis: Scrap your qualified import clutter
description: See <https://theam.github.io/require>
category: Other
license-file: LICENSE.md
extra-source-files:
- CHANGELOG.md
- LICENSE.md
- package.yaml
- README.md
- stack.yaml
ghc-options: -Wall
default-extensions:
- NoImplicitPrelude
- OverloadedStrings
- TypeApplications
- RecordWildCards
dependencies:
- base >= 4.9 && < 5
- universum >= 1.2.0 && < 2
- bytestring >= 0.10 && < 0.11
- text >= 1.2.3.0 && < 2
- megaparsec >= 6.5.0 && < 7
library:
source-dirs: library
executables:
requirepp:
source-dirs: executable
main: Main.hs
dependencies:
- require
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N
benchmarks:
require-benchmarks:
source-dirs: benchmark
main: Main.hs
dependencies:
- require
- criterion
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N
tests:
require-test-suite:
source-dirs: test-suite
main: Main.hs
dependencies:
- require
- tasty
- tasty-hspec
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N