-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhpt.cabal
73 lines (70 loc) · 2.85 KB
/
hpt.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
-- Initial hpt.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: hpt
version: 0.1.0
synopsis: A decentralised, security- and privacy-focused messaging application
description:
A messaging application written in Haskell which focuses on ensuring your privacy by using
peer-to-peer, SSL-encrypted communications and keeping t an absolute minimum the information
stored externally (basically online/offline status)
homepage: http://github.com/nschoe/hpt
license: BSD3
license-file: LICENSE
author: Nicolas Schoemaeker (nschoe) <[email protected]>
maintainer: Nicolas Schoemaeker (nschoe) <[email protected]>
-- copyright:
category: Network
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable hpt
main-is: Main.hs
other-modules: Types,
Tools,
Client.Connection,
Client.Conversation
-- other-extensions:
build-depends: base >=4.6 && <4.7,
network-simple-tls >=0.2.1,
network-simple >=0.3 && <0.4,
tls-extra >=0.6,
tls >=1.1 && <=1.2,
certificate >=1.3.9,
cryptohash >=0.11,
time >=1.4,
stm >=2.4,
containers >=0.5,
bytestring >=0.10,
binary >=0.7,
ansi-terminal >=0.6,
haskeline >=0.7 && <0.8,
dequeue >=0.1.5 && <0.2.0,
directory >=1.2,
filepath >=1.3
hs-source-dirs: src
default-language: Haskell2010
executable hpt-dispatcher
main-is: Dispatcher.hs
other-modules: Dispatcher.Tools,
Dispatcher.Connection,
Types
-- other-extensions:
build-depends: base >=4.6 && <4.7,
network-simple-tls >=0.2.1,
network-simple >=0.3 && <0.4,
tls-extra >=0.6,
tls >=1.1 && <=1.2,
certificate >=1.3.9,
cryptohash >=0.11,
time >=1.4,
stm >=2.4,
containers >=0.5,
bytestring >=0.10,
binary >=0.7,
ansi-terminal >=0.6,
directory >=1.2,
filepath >=1.3,
dequeue >=0.1.5 && <0.2.0,
network >=2.4.2.3 && <=2.5
hs-source-dirs: src
default-language: Haskell2010