-- 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: github@goschs.de -- 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