-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathye.cabal
More file actions
36 lines (33 loc) · 985 Bytes
/
ye.cabal
File metadata and controls
36 lines (33 loc) · 985 Bytes
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
cabal-version: 2.4
name: ye
version: 0.1.0.0
synopsis: A tcp load balancer
-- description:
-- bug-reports:
license: Apache-2.0
license-file: LICENSE
author: Shawn Rebello
maintainer: [email protected]
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
executable ye
main-is: Main.hs
other-modules: LoadBalance
, LoadBalance.Channel
, LoadBalance.Strategies
, Config
-- other-extensions:
extensions: ScopedTypeVariables
build-depends: base
, cryptohash
, network
, stm
, data-default-class
, optparse-applicative
, lens
, bytestring
, split
hs-source-dirs: app
, src
default-language: Haskell2010