-
Notifications
You must be signed in to change notification settings - Fork 0
/
bencode-unicode.cabal
44 lines (34 loc) · 1.15 KB
/
bencode-unicode.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
name: bencode-unicode
version: 0
license: BSD3
license-file: LICENSE
author: Matthew Harm Bekkema
maintainer: [email protected]
category: Data
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/mat8913/bencode-unicode
library
exposed-modules: Data.BEncode
Data.BEncode.Type
Data.BEncode.Class
Data.BEncode.BDecodable
Data.BEncode.BEncodable
other-modules: Data.BEncode.Parser
build-depends: base >= 4.6 && < 5
, text
, bytestring
, int-cast
default-language: Haskell2010
test-suite test-bencode
type: exitcode-stdio-1.0
main-is: Tests/Properties.hs
build-depends: base >= 4.6 && < 5
, QuickCheck
, quickcheck-unicode
, text
, bytestring
, int-cast
default-language: Haskell2010