-
Notifications
You must be signed in to change notification settings - Fork 0
/
piccione.cabal
44 lines (42 loc) · 1.5 KB
/
piccione.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
name: piccione
version: 0.1.0.0
synopsis: IMAP server
description: Quasi-conforming IMAP server implemented in Haskell
license: BSD3
license-file: LICENSE
author: Haskell Ita
maintainer: [email protected]
copyright: © 2018 Haskell Ita
category: Application Server
build-type: Simple
extra-source-files: stack.yaml, contributors.md
cabal-version: >=1.10
executable piccione
main-is: Main.hs
other-modules: RawCommandParser,
Command,
ServerState,
CommandRegistry,
Logger,
MailCommandMonad,
ArgumentsParserUtils,
Tls,
ServerLogic,
MessageReader,
ConnectionContext,
Commands.AnyState,
Commands.NotAuthenticatedState,
Commands.AuthenticatedState,
Commands.SelectedState
build-depends: base,
bytestring,
containers,
megaparsec,
text,
mtl,
network,
tls,
data-default,
optparse-applicative
hs-source-dirs: src
default-language: Haskell2010