packages feed

snmp-0.1.0.2: snmp.cabal

name:                snmp
version:             0.1.0.2
synopsis:            API for write snmp client.
description:         API for write snmp client.        
license:             BSD3
license-file:        LICENSE
author:              Alexey Smirnov
maintainer:          Alexey Smirnov <chemistmail@gmail.com>
-- copyright:           
category:            Network
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

source-repository head
  type:              git
  location:          git@github.com:chemist/snmp.git

library
  exposed-modules: Network.Protocol.Snmp, Network.Snmp.Client, Network.Snmp.Example
  other-modules: Network.Snmp.Client.Internal, Network.Snmp.Client.Types, Network.Snmp.Client.Version2, Network.Snmp.Client.Version3     
  -- other-extensions:    
  build-depends:       base >=4.6 && <4.8, 
                       asn1-encoding, 
                       asn1-types, 
                       asn1-parse, 
                       bytestring, 
                       network, 
                       mtl, 
                       text, 
                       time, 
                       containers, 
                       async, 
                       binary, 
                       network-info, 
                       cryptohash, 
                       cipher-des, 
                       crypto-cipher-types, 
                       securemem, 
                       random, 
                       cipher-aes
  hs-source-dirs:      src
  ghc-options: -Wall
  default-language:    Haskell2010