2019-02-17 16:04:24 +03:00
|
|
|
# This YAML file describes your package. Stack will automatically generate a
|
|
|
|
# Cabal file when you run `stack build`. See the hpack website for help with
|
|
|
|
# this file: <https://github.com/sol/hpack>.
|
|
|
|
name: stic
|
|
|
|
version: 0.1.0.0
|
2019-03-24 14:42:36 +03:00
|
|
|
github: "Martinsos/wabi"
|
|
|
|
#license: BSD3
|
|
|
|
author: "Stic"
|
|
|
|
maintainer: "info@stic.dev"
|
|
|
|
copyright: "2019 Stic"
|
2019-02-17 16:04:24 +03:00
|
|
|
|
2019-05-20 23:33:25 +03:00
|
|
|
default-extensions: OverloadedStrings
|
|
|
|
|
2019-02-17 16:04:24 +03:00
|
|
|
extra-source-files:
|
2019-03-28 21:16:07 +03:00
|
|
|
- README.md
|
|
|
|
- ChangeLog.md
|
2019-02-17 16:04:24 +03:00
|
|
|
|
2019-03-29 02:37:41 +03:00
|
|
|
data-dir: data/
|
|
|
|
data-files:
|
|
|
|
- Generator/templates/**/*
|
|
|
|
|
2019-02-17 16:04:24 +03:00
|
|
|
# Metadata used when publishing your package
|
|
|
|
# synopsis: Short description of your package
|
|
|
|
# category: Web
|
|
|
|
|
|
|
|
# To avoid duplicated efforts in documentation and dealing with the
|
|
|
|
# complications of embedding Haddock markup inside cabal files, it is
|
|
|
|
# common to point users to the README.md file.
|
2019-03-24 14:42:36 +03:00
|
|
|
description: Please see the README on GitHub at <https://github.com/Martinsos/stic#readme>
|
2019-02-17 16:04:24 +03:00
|
|
|
|
|
|
|
dependencies:
|
2019-03-28 21:16:07 +03:00
|
|
|
- base >= 4.7 && < 5
|
2019-02-17 16:04:24 +03:00
|
|
|
|
2019-05-05 22:46:06 +03:00
|
|
|
ghc-options:
|
|
|
|
- -Wall
|
|
|
|
- -Werror
|
|
|
|
|
2019-02-17 16:04:24 +03:00
|
|
|
library:
|
|
|
|
source-dirs: src
|
2019-03-28 21:16:07 +03:00
|
|
|
dependencies:
|
|
|
|
- filepath
|
2019-03-26 11:56:36 +03:00
|
|
|
- parsec
|
2019-03-29 02:37:41 +03:00
|
|
|
- mustache
|
|
|
|
- text
|
|
|
|
- aeson
|
|
|
|
- directory
|
2019-05-14 21:50:49 +03:00
|
|
|
- split
|
2019-02-17 16:04:24 +03:00
|
|
|
|
|
|
|
executables:
|
|
|
|
stic-exe:
|
|
|
|
main: Main.hs
|
|
|
|
source-dirs: app
|
|
|
|
ghc-options:
|
2019-03-28 21:16:07 +03:00
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
2019-02-17 16:04:24 +03:00
|
|
|
dependencies:
|
2019-03-28 21:16:07 +03:00
|
|
|
- stic
|
2019-02-17 16:04:24 +03:00
|
|
|
|
|
|
|
benchmarks:
|
|
|
|
stic-benchmarks:
|
|
|
|
main: Main.hs
|
|
|
|
source-dirs: benchmark
|
|
|
|
ghc-options:
|
2019-03-28 21:16:07 +03:00
|
|
|
- -threaded
|
2019-05-05 22:46:06 +03:00
|
|
|
- -rtsopts
|
2019-03-28 21:16:07 +03:00
|
|
|
- -with-rtsopts=-N
|
2019-02-17 16:04:24 +03:00
|
|
|
dependencies:
|
2019-03-28 21:16:07 +03:00
|
|
|
- stic
|
|
|
|
- criterion
|
2019-02-17 16:04:24 +03:00
|
|
|
|
|
|
|
tests:
|
|
|
|
stic-test:
|
2019-03-01 00:41:14 +03:00
|
|
|
main: TastyDiscoverDriver.hs
|
2019-02-17 16:04:24 +03:00
|
|
|
source-dirs: test
|
|
|
|
ghc-options:
|
2019-03-28 21:16:07 +03:00
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
2019-02-17 16:04:24 +03:00
|
|
|
dependencies:
|
2019-04-11 00:15:52 +03:00
|
|
|
- aeson
|
|
|
|
- filepath
|
|
|
|
- text
|
|
|
|
- mtl
|
2019-03-28 21:16:07 +03:00
|
|
|
- stic
|
|
|
|
- tasty
|
|
|
|
- tasty-hspec
|
|
|
|
- tasty-quickcheck
|
|
|
|
- tasty-discover
|
|
|
|
- QuickCheck
|
2019-05-05 18:54:51 +03:00
|
|
|
- parsec
|