-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencoder.cabal
31 lines (29 loc) · 1009 Bytes
/
encoder.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
name: encoder
version: 0.1
synopsis: A simple server to break a media to multiple parts to deliver it to encoders
license: BSD3
license-file: LICENSE
author: Amir Sabbaghi
maintainer: asaba90@gmail.com
category: Network
build-type: Simple
cabal-version: >=1.10
executable encoder
hs-source-dirs: src
main-is: Main.hs
other-modules: Client
, Server
, Packet
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, containers
, process
, directory
, filepath
, network-simple
, bytestring
, optparse-applicative < 0.13
, stm
, async
default-language: Haskell2010
default-extensions: ScopedTypeVariables