blob: eb1c666e51b83cfe665f700ebbd9876268b84ea6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
cabal-version: >=1.10
name: tomsg-mock
synopsis: Mock server implementation for tomsg
version: 0.1.0.0
license: MIT
author: Tom Smeding
maintainer: tom.smeding@gmail.com
build-type: Simple
executable tomsg-mock
main-is: Main.hs
other-modules: Types, Server, Util
build-depends: base >= 4.13 && < 4.15,
containers >= 0.6.4 && < 0.7,
monad-loops >= 0.4.3 && < 0.5,
stm >= 2.5 && < 2.6,
random >= 1.2 && < 1.3
hs-source-dirs: .
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded
|