diff options
author | James Crayne <jim.crayne@gmail.com> | 2015-06-21 07:36:46 -0400 |
---|---|---|
committer | James Crayne <jim.crayne@gmail.com> | 2015-06-21 15:35:26 -0400 |
commit | d420aefe0b14081b00d4655f9e8317903b5b02c3 (patch) | |
tree | 7b58c8a784d1ef23be05e62aaf0c8311353d57d5 /kiki.cabal | |
parent | 75d4b3b8bc60ff1d7ccc3990833a4439c0af02bc (diff) |
kikid: The Beginnings of the Kiki Daemon
Diffstat (limited to 'kiki.cabal')
-rw-r--r-- | kiki.cabal | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -13,7 +13,9 @@ build-type: Simple | |||
13 | 13 | ||
14 | Executable kiki | 14 | Executable kiki |
15 | Main-is: kiki.hs | 15 | Main-is: kiki.hs |
16 | Build-Depends: base -any, directory -any, | 16 | -- base >=4.6 due to use of readEither in KikiD.Message |
17 | Build-Depends: base >=4.6.0.0, | ||
18 | directory -any, | ||
17 | openpgp-util -any, | 19 | openpgp-util -any, |
18 | crypto-pubkey (>=0.2.3), cryptohash -any, | 20 | crypto-pubkey (>=0.2.3), cryptohash -any, |
19 | crypto-pubkey-types -any, | 21 | crypto-pubkey-types -any, |
@@ -31,5 +33,19 @@ Executable hosts | |||
31 | Main-is: hosts.hs | 33 | Main-is: hosts.hs |
32 | c-sources: dotlock.c | 34 | c-sources: dotlock.c |
33 | 35 | ||
36 | Executable kikid | ||
37 | Main-is: kikid.hs | ||
38 | Build-Depends: base -any, | ||
39 | --kiki >=0.0.3, | ||
40 | hdaemonize >= 0.5, | ||
41 | hsyslog -any, | ||
42 | async >= 2.0.0, | ||
43 | stm-chans >= 2.0.0, | ||
44 | network >= 2.4 && < 3.0, | ||
45 | monad-loops -any, | ||
46 | HTTP -any, | ||
47 | stm >= 2.3, | ||
48 | cereal -any | ||
49 | |||
34 | library | 50 | library |
35 | exposed-modules: KeyRing | 51 | exposed-modules: KeyRing |