2015-04-20 02:39:58 +00:00
|
|
|
name: hexstring
|
2015-04-20 03:01:05 +00:00
|
|
|
category: Data
|
2015-04-21 06:29:59 +00:00
|
|
|
version: 0.11.1
|
2015-04-20 02:39:58 +00:00
|
|
|
license: MIT
|
|
|
|
license-file: LICENSE
|
|
|
|
copyright: (c) 2015 Leon Mergen
|
|
|
|
author: Leon Mergen
|
|
|
|
maintainer: leon@solatis.com
|
|
|
|
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:
|
2015-04-20 09:27:04 +00:00
|
|
|
Provides an interface for converting any object that has a 'Binary' instance
|
|
|
|
to and from a hexadecimal Text representation.
|
2015-04-20 02:39:58 +00:00
|
|
|
|
|
|
|
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
|
2015-04-20 06:25:01 +00:00
|
|
|
, binary
|
2015-04-20 02:39:58 +00:00
|
|
|
, text
|
|
|
|
, bytestring
|
|
|
|
, base16-bytestring
|
2015-04-21 06:28:49 +00:00
|
|
|
, aeson
|
2015-04-20 02:39:58 +00:00
|
|
|
|
|
|
|
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
|
2015-04-20 06:25:01 +00:00
|
|
|
, binary
|
|
|
|
|
2015-04-20 02:39:58 +00:00
|
|
|
, hexstring
|
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: git://github.com/solatis/haskell-bitcoin-script.git
|
|
|
|
branch: master
|