human-friendly-id-gen/package.yaml

88 lines
1.8 KiB
YAML
Raw Permalink Normal View History

2018-09-02 11:02:08 +00:00
name: human-friendly-id-gen
version: '0.1.0.0'
category: Test
2018-09-02 21:58:33 +00:00
author: Yann Esposito
maintainer: yann.esposito@gmail.com
copyright: © 2018 Yann Esposito
homepage: https://gitlab.esy.fun/yogsototh/human-friendly-id-gen#readme
bug-reports: https://gitlab.esy.fun/yogsototh/human-friendly-id-gen/issues
2018-09-02 11:02:08 +00:00
license: ISC
extra-source-files:
- README.md
- stack.yaml
default-extensions:
- OverloadedStrings
- NoImplicitPrelude
- ScopedTypeVariables
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-uni-patterns
- -Wredundant-constraints
- -Wnoncanonical-monad-instances
- -Werror
- -O2
dependencies:
- base >=4.8 && <5
- protolude
2018-09-02 21:58:33 +00:00
data-files:
- dictionaries/*.txt
2018-09-02 11:02:08 +00:00
library:
source-dirs: src
2018-09-02 20:05:13 +00:00
dependencies:
- mwc-random
- primitive
2018-09-02 21:58:33 +00:00
- text
- vector
2018-09-02 11:02:08 +00:00
executables:
hfig:
2018-09-02 11:02:08 +00:00
main: Main.hs
source-dirs: src-exe
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -optP-Wno-nonportable-include-path
2018-09-02 11:02:08 +00:00
dependencies:
- human-friendly-id-gen
- turtle
- text
2018-09-02 11:02:08 +00:00
tests:
human-friendly-id-gen-doctest:
main: Main.hs
source-dirs: src-doctest
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- doctest >=0.10
- Glob >=0.7
- QuickCheck >=2.5
- human-friendly-id-gen
human-friendly-id-gen-test:
main: Main.hs
source-dirs: src-test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- tasty >=0.11
- tasty-hunit >=0.9
- tasty-smallcheck >=0.8
- human-friendly-id-gen
benchmarks:
human-friendly-id-gen-benchmark:
main: Main.hs
source-dirs: src-benchmark
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- criterion >=1.1
2018-09-13 10:55:27 +00:00
- vector
2018-09-02 11:02:08 +00:00
- human-friendly-id-gen
2018-09-02 20:05:13 +00:00
stability: alpha (experimental)