-
Notifications
You must be signed in to change notification settings - Fork 0
/
swarm.cabal
55 lines (54 loc) · 1.82 KB
/
swarm.cabal
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
cabal-version: >=1.10
name: swarm
version: 0.1.0.0
-- synopsis:
description: The swarm database server.
license: MIT
license-file: LICENSE
author: drsk
maintainer: drsk
build-type: Simple
executable swarm
main-is: Main.hs
other-modules: Auth.Google, Auth.Common, Firebase.CloudMessaging
hs-source-dirs: src
build-depends: base
, acid-state
, aeson
, binary
, binary-instances
, bytestring
, case-insensitive
, containers
, cryptonite
, cryptostore
, extra
, http-conduit
, http-types
, jose-jwt
, monad-control
, morpheus-graphql
, morpheus-graphql-app
, morpheus-graphql-subscriptions
, mtl
, pem
, safe
, safecopy
, snap-core
, snap-server
, suspend
, lifted-base
, temporary
, text
, time
, timers
, unliftio-core
, unordered-containers
, utf8-string
, wai-websockets
, websockets
, websockets-snap
, word8
, x509
, x509-store
default-language: Haskell2010