packages feed

cicero-api-0.1.2.0: cicero-api.cabal

cabal-version: 3.0
name:          cicero-api
version:       0.1.2.0
license:       Apache-2.0
license-files:
  LICENSE
  NOTICE
maintainer:  shea.levy@iohk.io
author:      Shea Levy
homepage:    https://github.com/input-output-hk/cicero-api#readme
bug-reports: https://github.com/input-output-hk/cicero-api/issues
synopsis: API bindings to IOHK's Cicero job scheduler
description:
  API bindings to IOHK's Cicero job scheduler. Also includes a simple CLI client.

  See github.com/input-output-hk/cicero
build-type: Simple
category: API

source-repository head
    type: git
    location: https://github.com/input-output-hk/cicero-pipe

library
  exposed-modules:
    IOHK.Cicero.API
    IOHK.Cicero.API.Action
    IOHK.Cicero.API.Fact
    IOHK.Cicero.API.Invocation
    IOHK.Cicero.API.Run
  build-depends:
    base ^>= 4.16.0.0,
    bytestring ^>= 0.11.1.0,
    binary ^>= 0.8.9.0,
    text ^>= 1.2.5.0,
    aeson ^>= 2.0.3.0,
    containers ^>= 0.6.5.1,
    time ^>= 1.11.1.1,
    uuid ^>= 1.3.15,
    servant ^>=0.19
  hs-source-dirs:   src
  default-language: Haskell2010

executable cicero-cli
  main-is: Main.hs
  other-modules: Action, Fact, Invocation, Run
  hs-source-dirs: cli
  build-depends:
    base ^>= 4.16.0.0,
    bytestring ^>= 0.11.1.0,
    attoparsec ^>= 0.14.4,
    servant-client-core ^>= 0.19,
    servant-client ^>= 0.19,
    optparse-applicative ^>= 0.17.0.0,
    http-client-tls ^>= 0.3.6.1,
    aeson ^>= 2.0.3.0,
    http-client ^>= 0.7.11,
    uuid ^>= 1.3.15,
    haskeline ^>= 0.8.2,
    servant ^>=0.19,
    unix ^>= 2.7.2.2,
    cicero-api
  default-language: Haskell2010