-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathixy.cabal
69 lines (65 loc) · 2.64 KB
/
ixy.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
name: ixy
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/githubuser/ixy#readme
license: BSD3
license-file: LICENSE
author: Author name here
maintainer: [email protected]
copyright: 2018 Author name here
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Lib
other-modules: Lib.Prelude, Lib.Pci, Lib.Memory, Lib.Ixgbe, Lib.Ixgbe.Queue
build-depends: base >= 4.7 && < 5
, array >= 0.5 && <= 0.6
, binary >= 0.8.0.0 && <= 0.10.0.0
, bytestring >= 0.10 && <= 0.10.8.2
, exceptions >= 0.9.0 && <= 0.10.0
, ghc-prim >= 0.5 && < 0.6
, monad-logger >= 0.3.29 && <= 0.3.29
, mtl >= 2.2.2 && <= 2.2.2
, pathtype >= 0.8 && <= 0.8.1
, protolude >= 0.1.6 && <= 0.2.2
, regex-pcre >= 0.94 && <= 0.94.4
, text >= 1.2 && <= 1.2.3.0
, vector >= 0.12.0.1 && <= 0.12.0.1
, unix >= 2.7.0.0 && <= 2.7.2.2
, unix-memory >= 0.1.1 && <= 0.1.2
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude, FlexibleContexts
executable forwarder
hs-source-dirs: app
main-is: Forwarder.hs
ghc-options: -Wall
build-depends: base
, bytestring >= 0.10 && <= 0.10.8.2
, clock >= 0.7 && < 0.8
, exceptions >= 0.9.0 && <= 0.10.0
, fast-logger >= 2.4.6 && <= 2.4.11
, ixy
, monad-logger >= 0.3.29 && <= 0.3.29
, text >= 1.2 && <= 1.2.3.0
, protolude >= 0.1.6 && <= 0.2.2
, unix >= 2.7.0.0 && <= 2.7.2.2
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude, FlexibleContexts
test-suite ixy-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, ixy
, protolude >= 0.1.6 && <= 0.2.2
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude
source-repository head
type: git
location: https://github.com/githubuser/ixy