cheogram-muc-bridge/cheogram-muc-bridge.cabal

38 lines
1.7 KiB
Plaintext
Raw Normal View History

2021-06-24 02:00:55 +00:00
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
2021-06-26 03:07:06 +00:00
ghc-options: -Wall -Wno-tabs -Wno-orphans
2021-06-24 02:00:55 +00:00
build-depends: base >=4.11 && <4.12,
attoparsec >=0.13 && <0.14,
basic-prelude >=0.7 && <0.8,
bytestring >=0.10 && <0.11,
containers >=0.5 && <0.6,
2021-06-29 03:36:37 +00:00
dhall >= 1.24 && <2.0,
2021-06-24 02:00:55 +00:00
errors >=2.3 && <2.4,
2021-06-29 03:36:37 +00:00
network >= 2.6.3 && <2.7,
2021-06-24 02:00:55 +00:00
network-protocol-xmpp >=0.4 && <0.5,
sqlite-simple >= 0.4 && <0.5,
2021-06-29 03:36:37 +00:00
stm >= 2.4 && <3.0,
stm-delay >= 0.1 && < 0.2,
2021-06-24 02:00:55 +00:00
text >=1.2 && <1.3,
time >=1.5 && <2.0,
2021-06-29 03:36:37 +00:00
unexceptionalio >= 0.5 && <0.6,
unexceptionalio-trans >= 0.5 && <0.6,
uuid >= 1.3 && <2.0,
2021-06-24 02:00:55 +00:00
xml-types >=0.3 && <0.4
executable gateway
import: defs
main-is: gateway.hs
2021-06-29 03:36:37 +00:00
other-modules: Router, Util, Config, ConfigFile, Session, IQManager