bitcoin-types-0.9.0: bitcoin-types.cabal
name: bitcoin-types
category: Network, Finance
version: 0.9.0
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-bitcoin-types/issues
stability: experimental
synopsis: Provides consistent low-level types used commonly among Bitcoin implementations
description:
Instead of having each Bitcoin library re-define the low level types it is using,
this library provides a ready-to-use collection of low-level types and aliases.
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.Bitcoin.Types
build-depends: base >= 4.3 && < 5
, bytestring
, text
, binary
, hexstring
, base58string
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.Bitcoin.TypesSpec
Spec
Main
build-depends: base >= 4.3 && < 5
, hspec
, bytestring
, base58string
, hexstring
, bitcoin-types
source-repository head
type: git
location: git://github.com/solatis/haskell-bitcoin-types.git
branch: master