-
Notifications
You must be signed in to change notification settings - Fork 0
/
xcp.cabal
28 lines (26 loc) · 1.3 KB
/
xcp.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
-- Initial xcp.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: xcp
version: 0.1.0.1
synopsis: Partial implementation of the XCP protocol with ethernet as transport layer.
description: This library implements creating XCP packets for setting and retrieving
variables from a slave device using XCP. The transport layer is ethernet,
implemented in 'Network.XcpEth'. Other transport layers can be added easily
and can use the same building blocks from 'Network.Xcp'.
For basic usage, see 'Network.XcpEth'.
license: GPL-3
license-file: LICENSE
author: Christian Gosch
maintainer: [email protected]
-- copyright:
category: Network
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: Network.Udp, Network.XcpEth, Network.Xcp
-- other-modules:
other-extensions: GeneralizedNewtypeDeriving
build-depends: base >=4.7 && <4.9, network >=2.6 && <2.7, mtl >=2.2 && <2.3, transformers >=0.4 && <0.5, bytestring >=0.10 && <0.11, containers >=0.5 && <0.6
-- hs-source-dirs:
default-language: Haskell2010