~singpolyma/cheogram-muc-bridge

ref: 3b77e21c249749ffa584a7ec079b50a2a9510601 cheogram-muc-bridge/cheogram-muc-bridge.cabal -rw-r--r-- 1.7 KiB
3b77e21cStephen Paul Weber Allow no subscript 1 year, 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
cabal-version:       2.2
name:                cheogram-muc-bridge
version:             0.1.0
synopsis:            XMPP MUC-to-MUC bridge
homepage:            https://git.singpolyma.net/cheogram-muc-bridge
license:             AGPL-3.0-or-later
license-file:        COPYING
author:              Stephen Paul Weber
maintainer:          singpolyma@singpolyma.net
build-type:          Simple

common defs
  default-language:    Haskell2010
  ghc-options:         -Wall -Wno-tabs -Wno-orphans
  build-depends:       base                  == 4.*,
                       attoparsec            >=0.13 && <0.14,
                       basic-prelude         >=0.7 && <0.8,
                       bytestring            >=0.10 && <0.11,
                       containers            >=0.5 && <0.6,
                       dhall                 >= 1.24 && <2.0,
                       errors                >=2.3 && <2.4,
                       network               >= 2.6.3 && <2.7,
                       network-protocol-xmpp >=0.4 && <0.5,
                       sqlite-simple         >= 0.4 && <0.5,
                       stm                   >= 2.4 && <3.0,
                       stm-delay             >= 0.1 && < 0.2,
                       text                  >=1.2 && <1.3,
                       time                  >=1.5 && <2.0,
                       unexceptionalio       >= 0.5 && <0.6,
                       unexceptionalio-trans >= 0.5 && <0.6,
                       uuid                  >= 1.3 && <2.0,
                       xml-types             >=0.3 && <0.4

executable gateway
  import:              defs
  main-is:             gateway.hs
  other-modules:       Router, Util, Config, ConfigFile, Session, IQManager