mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-04-05 04:36:11 +00:00
* RSA OAEP functions * encrypt/decrypt using AES AEAD GSM * fix JOIN syntax test * encrypt/decrypt functions working * e2e encryption! * refactor monadic transitions * rename liftError' to liftEitherError * combine CryproFailable functions
86 lines
1.7 KiB
YAML
86 lines
1.7 KiB
YAML
name: simplex-messaging
|
|
version: 0.1.0.0
|
|
#synopsis:
|
|
#description:
|
|
homepage: https://github.com/simplex-chat/simplex-messaging#readme
|
|
license: AGPL-3
|
|
author: Evgeny Poberezkin
|
|
maintainer: evgeny@poberezkin.com
|
|
copyright: 2020 Evgeny Poberezkin
|
|
category: Web, System, Services, Cryptography
|
|
extra-source-files:
|
|
- README.md
|
|
|
|
dependencies:
|
|
- async == 2.2.*
|
|
- attoparsec == 0.13.*
|
|
- base >= 4.7 && < 5
|
|
- base64-bytestring >= 1.0 && < 1.3
|
|
- bytestring == 0.10.*
|
|
- containers
|
|
- cryptonite == 0.26.*
|
|
- iso8601-time == 0.1.*
|
|
- memory == 0.15.*
|
|
- mtl
|
|
- network == 3.1.*
|
|
- simple-logger == 0.1.*
|
|
- sqlite-simple == 0.4.*
|
|
- stm
|
|
- template-haskell == 2.15.*
|
|
- text == 1.2.*
|
|
- time == 1.9.*
|
|
- transformers == 0.5.*
|
|
- unliftio == 0.2.*
|
|
- unliftio-core == 0.1.*
|
|
|
|
library:
|
|
source-dirs: src
|
|
|
|
executables:
|
|
smp-server:
|
|
source-dirs: apps/smp-server
|
|
main: Main.hs
|
|
dependencies:
|
|
- simplex-messaging
|
|
ghc-options:
|
|
- -threaded
|
|
|
|
smp-agent:
|
|
source-dirs: apps/smp-agent
|
|
main: Main.hs
|
|
dependencies:
|
|
- simplex-messaging
|
|
ghc-options:
|
|
- -threaded
|
|
|
|
dog-food:
|
|
source-dirs: apps/dog-food
|
|
main: Main.hs
|
|
dependencies:
|
|
- ansi-terminal == 0.10.*
|
|
- optparse-applicative == 0.15.*
|
|
- simplex-messaging
|
|
ghc-options:
|
|
- -threaded
|
|
|
|
tests:
|
|
smp-server-test:
|
|
source-dirs: tests
|
|
main: Test.hs
|
|
dependencies:
|
|
- simplex-messaging
|
|
- hspec == 2.7.*
|
|
- hspec-core == 2.7.*
|
|
- HUnit == 1.6.*
|
|
- random == 1.1.*
|
|
|
|
ghc-options:
|
|
# - -haddock
|
|
- -Wall
|
|
- -Wcompat
|
|
- -Werror=incomplete-patterns
|
|
- -Wredundant-constraints
|
|
- -Wincomplete-record-updates
|
|
- -Wincomplete-uni-patterns
|
|
- -Wunused-type-patterns
|