2019-09-26 21:45:14 +00:00
|
|
|
name: rubyhs
|
|
|
|
version: 0.1.0.0
|
|
|
|
github: "fredefox/rubyhs"
|
|
|
|
license: BSD3
|
|
|
|
author: "Frederik Hanghøj Iversen"
|
|
|
|
maintainer: "fhi.1990@gmail.com"
|
|
|
|
copyright: "2019 Frederik Hanghøj Iversen"
|
|
|
|
|
|
|
|
extra-source-files:
|
|
|
|
- README.md
|
|
|
|
- ChangeLog.md
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
description:
|
|
|
|
Please see the README on GitHub at <https://github.com/fredefox/rubyhs#readme>
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
- base >= 4.7 && < 5
|
|
|
|
- process
|
|
|
|
- aeson
|
|
|
|
- vector
|
|
|
|
- bytestring
|
|
|
|
- frelude
|
2019-10-03 14:13:34 +00:00
|
|
|
- containers
|
|
|
|
- mtl
|
2019-10-11 09:08:36 +00:00
|
|
|
- prettyprinter
|
|
|
|
- unordered-containers
|
2019-10-14 19:46:02 +00:00
|
|
|
- optparse-applicative
|
|
|
|
- temporary
|
2019-10-15 18:46:28 +00:00
|
|
|
- text
|
2019-09-26 21:45:14 +00:00
|
|
|
|
|
|
|
default-extensions:
|
|
|
|
- ConstraintKinds
|
2019-10-11 09:08:36 +00:00
|
|
|
- DeriveAnyClass
|
2019-09-26 21:45:14 +00:00
|
|
|
- DeriveGeneric
|
2019-10-11 09:08:36 +00:00
|
|
|
- DerivingStrategies
|
|
|
|
- EmptyCase
|
2019-09-26 21:45:14 +00:00
|
|
|
- FlexibleContexts
|
|
|
|
- FlexibleInstances
|
|
|
|
- GADTs
|
|
|
|
- GeneralizedNewtypeDeriving
|
|
|
|
- LambdaCase
|
2019-10-16 18:12:07 +00:00
|
|
|
- MultiWayIf
|
2019-10-11 09:08:36 +00:00
|
|
|
- NamedFieldPuns
|
2019-09-26 21:45:14 +00:00
|
|
|
- NamedWildCards
|
2019-10-11 09:08:36 +00:00
|
|
|
- NoImplicitPrelude
|
2019-09-26 21:45:14 +00:00
|
|
|
- OverloadedStrings
|
|
|
|
- ScopedTypeVariables
|
|
|
|
- StandaloneDeriving
|
|
|
|
- TupleSections
|
|
|
|
- TypeApplications
|
|
|
|
- TypeFamilies
|
|
|
|
- TypeSynonymInstances
|
|
|
|
- UnicodeSyntax
|
|
|
|
- ViewPatterns
|
|
|
|
|
|
|
|
library:
|
|
|
|
source-dirs: src
|
|
|
|
|
|
|
|
executables:
|
|
|
|
rubyhs:
|
|
|
|
main: Main.hs
|
|
|
|
source-dirs: app
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
|
|
|
dependencies:
|
|
|
|
- rubyhs
|
|
|
|
|
|
|
|
tests:
|
|
|
|
test:
|
|
|
|
main: Spec.hs
|
|
|
|
source-dirs: test
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
|
|
|
dependencies:
|
|
|
|
- rubyhs
|