-
Notifications
You must be signed in to change notification settings - Fork 1
/
snmp.cabal
55 lines (53 loc) · 1023 Bytes
/
snmp.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
cabal-version: 2.2
name:
snmp
version:
0.3.1.0
synopsis:
SNMP protocol library
description:
SNMP library for writing client applications with SNMP
homepage:
https://github.com/chessai/snmp.git
license:
BSD-3-Clause
license-file:
LICENSE
author:
Andrew Martin
maintainer:
chessai1996@gmail.com
copyright:
2019 (c) Andrew Martin
category:
Language
build-type:
Simple
extra-source-files:
CHANGELOG.md
source-repository head
type: git
location: https://github.com/chessai/language-asn
library
exposed-modules:
Snmp.Types
Snmp.Encoding
Snmp.Decoding
Snmp.Client
build-depends:
base >=4.10.1 && < 5
, bytestring >= 0.10 && < 0.11
, containers >= 0.5 && < 0.7
, cryptonite >= 0.20 && < 0.26
, ip >= 1.3 && < 1.8
, language-asn >= 0.1 && < 0.2
, memory >= 0.14 && < 0.16
, stm >= 2.4 && < 2.6
, vector >= 0.11 && < 0.13
, network >= 3.0 && < 3.2
hs-source-dirs:
src
default-language:
Haskell2010
ghc-options:
-Wall -O2