-
Notifications
You must be signed in to change notification settings - Fork 6
/
hexstring.cabal
59 lines (49 loc) · 1.73 KB
/
hexstring.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
56
57
58
59
name: hexstring
category: Data
version: 0.11.1
license: MIT
license-file: LICENSE
copyright: (c) 2015 Leon Mergen
author: Leon Mergen
maintainer: [email protected]
homepage: http://www.leonmergen.com/opensource.html
bug-reports: http://github.com/solatis/haskell-hexstring/issues
stability: experimental
synopsis: Fast and safe representation of a hex string
description:
Provides an interface for converting any object that has a 'Binary' instance
to and from a hexadecimal Text representation.
build-type: Simple
data-files: LICENSE, README.md
cabal-version: >= 1.10
tested-with: GHC == 7.6, GHC == 7.8, GHC == 7.10
library
hs-source-dirs: src
ghc-options: -Wall -ferror-spans
default-language: Haskell2010
exposed-modules: Data.HexString
build-depends: base >= 4.3 && < 5
, binary
, text
, bytestring
, base16-bytestring
, aeson
test-suite test-suite
type: exitcode-stdio-1.0
ghc-options: -Wall -ferror-spans -threaded -auto-all -caf-all -fno-warn-type-defaults
default-language: Haskell2010
hs-source-dirs: test
main-is: Main.hs
other-modules: Data.HexStringSpec
Spec
Main
build-depends: base >= 4.3 && < 5
, hspec
, text
, bytestring
, binary
, hexstring
source-repository head
type: git
location: git://github.com/solatis/haskell-bitcoin-script.git
branch: master