Hydra/package.yaml

141 lines
2.2 KiB
YAML
Raw Normal View History

2019-05-01 20:12:50 +03:00
name: Hydra
version: 1.0.0.0
github: "graninas/Hydra"
license: BSD3
author: "Alexander Granin"
maintainer: "graninas@gmail.com"
copyright: "Granin A.S. 2019"
description:
Hydra is the project that allows to build multithreaded concurrent applications.
Hydra is initially based on the Enecuum.Framework.
default-extensions:
- NoImplicitPrelude
- GADTs
- RankNTypes
- DeriveFunctor
- DeriveGeneric
- OverloadedStrings
- LambdaCase
- MultiParamTypeClasses
- ExplicitNamespaces
- TypeApplications
- ScopedTypeVariables
- TypeOperators
- TypeFamilies
- DataKinds
- FlexibleContexts
- FlexibleInstances
- PatternSynonyms
- PolyKinds
- DefaultSignatures
- ConstraintKinds
- NamedFieldPuns
- TupleSections
- ViewPatterns
- MultiWayIf
dependencies:
- base >= 4.7 && < 5
- bytestring
- time-units
- network
- aeson
- aeson-pretty
- cereal
- mtl
- cryptonite
- base16-bytestring
- base58-bytestring
- base64-bytestring
- arithmoi
- directory
- filepath
- process
- extra
- time
- clock
- vector
- scientific
- containers
- random
- free
- iproute
- memory
- transformers
- template-haskell
- async
- text
- haskeline
- cryptohash-sha256
- bytestring-conversion
- newtype-generics
- lens
- universum
- fmt
- stm
- hslogger
- lens-aeson
- th-abstraction
- MonadRandom
- entropy
- validation
- silently
- uuid
- resourcet
- triplesec
- yaml
- hspec
- HUnit
- QuickCheck
- hspec-contrib
- newtype-generics
- regex-posix
- safe-exceptions
2019-05-17 20:15:55 +03:00
- unliftio
2019-05-01 20:12:50 +03:00
library:
source-dirs:
- src
ghc-options:
- -Wall
executables:
2019-05-15 22:12:08 +03:00
perf-test-app:
2019-05-01 20:12:50 +03:00
main: Main.hs
2019-05-15 22:12:08 +03:00
source-dirs: app/PerfTestApp
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -O2
dependencies:
- Hydra
2019-05-17 11:19:51 +03:00
meteor-counter-app:
2019-05-15 22:12:08 +03:00
main: Main.hs
source-dirs: app/MeteorCounter
2019-05-01 20:12:50 +03:00
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -O2
dependencies:
- Hydra
tests:
functional-tests:
main: Spec.hs
dependencies:
- Hydra
source-dirs:
- test/spec
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N