-
Notifications
You must be signed in to change notification settings - Fork 1
/
language-asn.cabal
53 lines (51 loc) · 1.04 KB
/
language-asn.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
cabal-version: 2.2
name:
language-asn
version:
0.1.1.0
synopsis:
ASN.1 encoding and decoding
description:
ASN.1 language implementation. SNMP uses ASN.1 for serialization.
homepage:
https://github.com/chessai/language-asn.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:
Language.Asn.Decoding
Language.Asn.Encoding
Language.Asn.ObjectIdentifier
Language.Asn.Types
Language.Asn.Types.Internal
build-depends:
, aeson >= 1.2 && < 1.5
, base >=4.9 && <5
, bytestring >= 0.10 && < 0.11
, contravariant >= 1.3 && < 1.6
, hashable >= 1.2 && < 1.4
, pretty >= 1.1 && < 1.2
, primitive >= 0.6.4 && < 7
, text >= 1.2 && < 1.3
, vector >= 0.11 && < 0.13
hs-source-dirs:
src
default-language:
Haskell2010