packages feed

dmcc-1.1.0.2: dmcc.cabal

cabal-version: 1.12
name: dmcc
version: 1.1.0.2
license: BSD3
license-file: LICENSE
maintainer: dima@dzhus.org
author: Max Taldykin, Timofey Cherganov, Dmitry Dzhus, Viacheslav Lotsmanov
homepage: https://github.com/f-me/dmcc#readme
bug-reports: https://github.com/f-me/dmcc/issues
synopsis: AVAYA DMCC API bindings and WebSockets server for AVAYA
description:
    Partial implementation of CSTA Phase III XML Protocol (ECMA-323) with AVAYA (DMCC 6.3) extensions.
category: Network
build-type: Simple
extra-source-files:
    CHANGELOG.md
    README.md
    dmcc-ws/example.cfg

source-repository head
    type: git
    location: https://github.com/f-me/dmcc

library
    exposed-modules:
        DMCC
        DMCC.Agent
        DMCC.Prelude
        DMCC.Session
        DMCC.Types
        DMCC.Util
        DMCC.WebHook
        DMCC.XML.Raw
        DMCC.XML.Request
        DMCC.XML.Response
    hs-source-dirs: src
    other-modules:
        Paths_dmcc
    default-language: Haskell2010
    default-extensions: OverloadedStrings RecordWildCards
                        NamedFieldPuns NoImplicitPrelude
    ghc-options: -Wall -Wcompat -Wno-missing-home-modules
    build-depends:
        HsOpenSSL <0.12,
        aeson <1.5,
        base <4.14,
        binary <0.9,
        bytestring <0.11,
        case-insensitive <1.3,
        classy-prelude <1.6,
        containers <0.7,
        http-client <0.7,
        io-streams <1.6,
        lens <4.19,
        monad-control <1.1,
        monad-logger <0.4,
        network <3.2,
        openssl-streams <1.3,
        safe-exceptions <0.2,
        stm <2.6,
        text <1.3,
        time <1.10,
        transformers-base <0.5,
        unliftio <0.3,
        xml-conduit <1.10,
        xml-hamlet <0.6

executable dmcc-ws
    main-is: Main.hs
    hs-source-dirs: dmcc-ws
    other-modules:
        Paths_dmcc
    default-language: Haskell2010
    default-extensions: OverloadedStrings RecordWildCards
                        NamedFieldPuns NoImplicitPrelude
    ghc-options: -Wall -Wcompat -Wno-missing-home-modules -threaded
    build-depends:
        aeson <1.5,
        base <4.14,
        bytestring <0.11,
        classy-prelude <1.6,
        configurator <0.4,
        containers <0.7,
        dmcc -any,
        monad-control <1.1,
        monad-logger <0.4,
        random <1.2,
        stm <2.6,
        text <1.3,
        unix <2.8,
        unliftio <0.3,
        websockets <0.13