-
Notifications
You must be signed in to change notification settings - Fork 0
/
vanguard.cabal
99 lines (96 loc) · 3.36 KB
/
vanguard.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
-- Initial vanguard.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: vanguard
version: 0.1.0.0
synopsis: A peer-to-peer VPN.
-- description:
homepage: https://github.com/rlupton20/networkChaos
license: GPL-3
license-file: LICENSE
author: Richard Lupton
maintainer: [email protected]
-- copyright:
category: Network
build-type: Simple
extra-source-files: README.md, ChangeLog.md
cabal-version: >=1.10
executable vanguard
main-is: Main.hs
other-modules: Routing.Routing
, Routing.RoutingTable
, Routing.RoutingTable.Internal
, Config
, Config.Internal
, Command
, Command.Control
, Network.TunTap
other-extensions: BangPatterns
, OverloadedStrings
, ForeignFunctionInterface
, PackageImports
, RecordWildCards
, ExistentialQuantification
, RankNTypes
, DeriveDataTypeable
build-depends: base
, vanguard-core
, stm
, async
, mtl
, transformers
, bytestring
, network
, cereal
, unbounded-delays
, unix
, containers
, unordered-containers
, network-house
, unix-bytestring
, stunclient
, aeson
, yaml
, tree-threads
, concurrent-stack
, wai
, warp
, http-types
, free
hs-source-dirs: app
c-sources: app/Network/tuntap.c
cc-options: -shared -fPIC
ghc-options: -Wall -O2 -threaded
default-language: Haskell2010
test-suite vanguard-test
type: exitcode-stdio-1.0
hs-source-dirs: test, app
main-is: Spec.hs
other-modules: Routing.RoutingTableTest
, Routing.RoutingTable
, Routing.RoutingTable.Internal
other-extensions: OverloadedStrings
build-depends: base
, vanguard-core
, HUnit
, QuickCheck
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
, stm
, async
, bytestring
, containers
, transformers
, mtl
, time
, network
, unix
, yaml
, aeson
, tree-threads
, warp
, wai
, http-types
, unordered-containers
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010