2021-12-18 13:59:06 +00:00
|
|
|
cabal-version: 1.12
|
|
|
|
|
|
|
|
-- This file has been generated from package.yaml by hpack version 0.34.4.
|
|
|
|
--
|
|
|
|
-- see: https://github.com/sol/hpack
|
|
|
|
|
|
|
|
name: simplex-chat
|
2022-02-22 22:20:32 +04:00
|
|
|
version: 1.2.1
|
2021-12-18 13:59:06 +00:00
|
|
|
category: Web, System, Services, Cryptography
|
|
|
|
homepage: https://github.com/simplex-chat/simplex-chat#readme
|
2022-01-12 21:18:54 +00:00
|
|
|
author: simplex.chat
|
|
|
|
maintainer: chat@simplex.chat
|
|
|
|
copyright: 2020-22 simplex.chat
|
2021-12-18 13:59:06 +00:00
|
|
|
license: AGPL-3
|
|
|
|
license-file: LICENSE
|
|
|
|
build-type: Simple
|
|
|
|
extra-source-files:
|
|
|
|
README.md
|
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules:
|
|
|
|
Simplex.Chat
|
|
|
|
Simplex.Chat.Controller
|
|
|
|
Simplex.Chat.Help
|
|
|
|
Simplex.Chat.Markdown
|
2022-01-24 16:07:17 +00:00
|
|
|
Simplex.Chat.Messages
|
2022-01-21 11:09:33 +00:00
|
|
|
Simplex.Chat.Migrations.M20220101_initial
|
2022-02-02 20:25:36 +04:00
|
|
|
Simplex.Chat.Migrations.M20220122_v1_1
|
2022-02-07 15:19:34 +04:00
|
|
|
Simplex.Chat.Migrations.M20220205_chat_item_status
|
2022-02-13 13:19:24 +04:00
|
|
|
Simplex.Chat.Migrations.M20220210_deduplicate_contact_requests
|
2022-01-21 11:09:33 +00:00
|
|
|
Simplex.Chat.Mobile
|
2021-12-18 13:59:06 +00:00
|
|
|
Simplex.Chat.Options
|
|
|
|
Simplex.Chat.Protocol
|
|
|
|
Simplex.Chat.Store
|
|
|
|
Simplex.Chat.Styled
|
|
|
|
Simplex.Chat.Terminal
|
2022-01-21 11:09:33 +00:00
|
|
|
Simplex.Chat.Terminal.Input
|
|
|
|
Simplex.Chat.Terminal.Notification
|
2022-01-21 18:58:43 +00:00
|
|
|
Simplex.Chat.Terminal.Output
|
2021-12-18 13:59:06 +00:00
|
|
|
Simplex.Chat.Types
|
|
|
|
Simplex.Chat.Util
|
|
|
|
Simplex.Chat.View
|
|
|
|
other-modules:
|
|
|
|
Paths_simplex_chat
|
|
|
|
hs-source-dirs:
|
|
|
|
src
|
|
|
|
ghc-options: -Wall -Wcompat -Werror=incomplete-patterns -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns -Wunused-type-patterns
|
|
|
|
build-depends:
|
2022-01-29 20:21:37 +00:00
|
|
|
aeson ==2.0.*
|
2022-01-07 11:28:39 +04:00
|
|
|
, ansi-terminal >=0.10 && <0.12
|
2022-02-06 16:18:01 +00:00
|
|
|
, async ==2.2.*
|
2022-01-29 20:21:37 +00:00
|
|
|
, attoparsec ==0.14.*
|
2021-12-18 13:59:06 +00:00
|
|
|
, base >=4.7 && <5
|
|
|
|
, base64-bytestring >=1.0 && <1.3
|
|
|
|
, bytestring ==0.10.*
|
|
|
|
, composition ==1.0.*
|
|
|
|
, containers ==0.6.*
|
|
|
|
, cryptonite >=0.27 && <0.30
|
|
|
|
, directory ==1.3.*
|
|
|
|
, exceptions ==0.10.*
|
|
|
|
, filepath ==1.4.*
|
|
|
|
, mtl ==2.2.*
|
2022-01-06 16:03:45 +00:00
|
|
|
, optparse-applicative >=0.15 && <0.17
|
2021-12-18 13:59:06 +00:00
|
|
|
, process ==1.6.*
|
|
|
|
, simple-logger ==0.1.*
|
2022-01-11 21:23:57 +00:00
|
|
|
, simplexmq ==1.0.*
|
2021-12-18 13:59:06 +00:00
|
|
|
, sqlite-simple ==0.4.*
|
|
|
|
, stm ==2.5.*
|
|
|
|
, terminal ==0.2.*
|
|
|
|
, text ==1.2.*
|
|
|
|
, time ==1.9.*
|
|
|
|
, unliftio ==0.2.*
|
|
|
|
, unliftio-core ==0.2.*
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
executable simplex-chat
|
|
|
|
main-is: Main.hs
|
|
|
|
other-modules:
|
|
|
|
Paths_simplex_chat
|
|
|
|
hs-source-dirs:
|
|
|
|
apps/simplex-chat
|
|
|
|
ghc-options: -Wall -Wcompat -Werror=incomplete-patterns -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns -Wunused-type-patterns -threaded
|
|
|
|
build-depends:
|
2022-01-29 20:21:37 +00:00
|
|
|
aeson ==2.0.*
|
2022-01-07 11:28:39 +04:00
|
|
|
, ansi-terminal >=0.10 && <0.12
|
2022-02-06 16:18:01 +00:00
|
|
|
, async ==2.2.*
|
2022-01-29 20:21:37 +00:00
|
|
|
, attoparsec ==0.14.*
|
2021-12-18 13:59:06 +00:00
|
|
|
, base >=4.7 && <5
|
|
|
|
, base64-bytestring >=1.0 && <1.3
|
|
|
|
, bytestring ==0.10.*
|
|
|
|
, composition ==1.0.*
|
|
|
|
, containers ==0.6.*
|
|
|
|
, cryptonite >=0.27 && <0.30
|
|
|
|
, directory ==1.3.*
|
|
|
|
, exceptions ==0.10.*
|
|
|
|
, filepath ==1.4.*
|
|
|
|
, mtl ==2.2.*
|
2022-01-06 16:03:45 +00:00
|
|
|
, optparse-applicative >=0.15 && <0.17
|
2021-12-18 13:59:06 +00:00
|
|
|
, process ==1.6.*
|
|
|
|
, simple-logger ==0.1.*
|
|
|
|
, simplex-chat
|
2022-01-11 21:23:57 +00:00
|
|
|
, simplexmq ==1.0.*
|
2021-12-18 13:59:06 +00:00
|
|
|
, sqlite-simple ==0.4.*
|
|
|
|
, stm ==2.5.*
|
|
|
|
, terminal ==0.2.*
|
|
|
|
, text ==1.2.*
|
|
|
|
, time ==1.9.*
|
|
|
|
, unliftio ==0.2.*
|
|
|
|
, unliftio-core ==0.2.*
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
test-suite simplex-chat-test
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: Test.hs
|
|
|
|
other-modules:
|
|
|
|
ChatClient
|
|
|
|
ChatTests
|
|
|
|
MarkdownTests
|
2022-02-06 16:18:01 +00:00
|
|
|
MobileTests
|
2021-12-18 13:59:06 +00:00
|
|
|
ProtocolTests
|
|
|
|
Paths_simplex_chat
|
|
|
|
hs-source-dirs:
|
|
|
|
tests
|
|
|
|
ghc-options: -Wall -Wcompat -Werror=incomplete-patterns -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns -Wunused-type-patterns
|
|
|
|
build-depends:
|
2022-01-29 20:21:37 +00:00
|
|
|
aeson ==2.0.*
|
2022-01-07 11:28:39 +04:00
|
|
|
, ansi-terminal >=0.10 && <0.12
|
2021-12-18 13:59:06 +00:00
|
|
|
, async ==2.2.*
|
2022-01-29 20:21:37 +00:00
|
|
|
, attoparsec ==0.14.*
|
2021-12-18 13:59:06 +00:00
|
|
|
, base >=4.7 && <5
|
|
|
|
, base64-bytestring >=1.0 && <1.3
|
|
|
|
, bytestring ==0.10.*
|
|
|
|
, composition ==1.0.*
|
|
|
|
, containers ==0.6.*
|
|
|
|
, cryptonite >=0.27 && <0.30
|
|
|
|
, directory ==1.3.*
|
|
|
|
, exceptions ==0.10.*
|
|
|
|
, filepath ==1.4.*
|
|
|
|
, hspec ==2.7.*
|
|
|
|
, mtl ==2.2.*
|
|
|
|
, network ==3.1.*
|
2022-01-06 16:03:45 +00:00
|
|
|
, optparse-applicative >=0.15 && <0.17
|
2021-12-18 13:59:06 +00:00
|
|
|
, process ==1.6.*
|
|
|
|
, simple-logger ==0.1.*
|
|
|
|
, simplex-chat
|
2022-01-11 21:23:57 +00:00
|
|
|
, simplexmq ==1.0.*
|
2021-12-18 13:59:06 +00:00
|
|
|
, sqlite-simple ==0.4.*
|
|
|
|
, stm ==2.5.*
|
|
|
|
, terminal ==0.2.*
|
|
|
|
, text ==1.2.*
|
|
|
|
, time ==1.9.*
|
|
|
|
, unliftio ==0.2.*
|
|
|
|
, unliftio-core ==0.2.*
|
|
|
|
default-language: Haskell2010
|