packages feed

periodic-client-exe-1.1.7.1: periodic-client-exe.cabal

name:                periodic-client-exe
version:             1.1.7.1
synopsis:            Periodic task system haskell client executables
description:         Periodic task system haskell client executables.
homepage:            https://github.com/Lupino/haskell-periodic/tree/master/periodic-client-exe#readme
license:             BSD3
license-file:        LICENSE
author:              Li Meng Jun
maintainer:          lmjubuntu@gmail.com
copyright:           MIT
category:            System,Web
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

executable periodic
  hs-source-dirs:      app
  main-is:             periodic.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base >= 4.7 && < 5
                     , periodic-client
                     , periodic-common
                     , bytestring
                     , boxes
                     , unix-time
                     , binary
                     , metro
                     , metro-socket
                     , metro-transport-xor
                     , metro-transport-tls
                     , metro-transport-websockets
  default-language:    Haskell2010

executable periodic-run
  hs-source-dirs:      app
  main-is:             periodic-run.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base >= 4.7 && < 5
                     , periodic-client
                     , periodic-common
                     , bytestring
                     , text
                     , process
                     , unliftio
                     , deepseq
                     , metro
                     , metro-socket
                     , metro-transport-xor
                     , metro-transport-tls
                     , metro-transport-websockets
  default-language:    Haskell2010

executable periodic-http-bridge
  hs-source-dirs:      app
  main-is:             periodic-http-bridge.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base >= 4.7 && < 5
                     , periodic-client
                     , periodic-common
                     , bytestring
                     , scotty
                     , warp
                     , data-default-class
                     , streaming-commons
                     , http-types
                     , metro
                     , metro-socket
                     , metro-transport-xor
                     , metro-transport-tls
                     , metro-transport-websockets
                     , websockets
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/Lupino/haskell-periodic