-
Notifications
You must be signed in to change notification settings - Fork 0
/
easy-bitcoin.txt
52 lines (48 loc) · 2.5 KB
/
easy-bitcoin.txt
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
-- Initial easy-bitcoin.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: easy-bitcoin
version: 0.1.0.0
synopsis: simple library providing types and class-instances for bitcoin programs
-- description:
homepage: https://github.com/vwwv/easy-bitcoin
license: BSD3
license-file: LICENSE
author: Alejandro D.P.
maintainer: [email protected]
-- copyright:
category: Network
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules: Network.EasyBitcoin
other-modules: Network.EasyBitcoin.Address,
Network.EasyBitcoin.NetworkParams,
-- Network.EasyBitcoin.Transaction,
Network.EasyBitcoin.Keys,
-- Network.EasyBitcoin.Script,
-- Network.EasyBitcoin.BitcoinUnits,
-- Network.EasyBitcoin.Transaction.MultisigTx,
-- Network.EasyBitcoin.Transaction.SimpleTx,
-- Network.EasyBitcoin.Internal.InstanciationHelpers,
-- Network.EasyBitcoin.Internal.Transaction,
-- Network.EasyBitcoin.Internal.HashFunctions,
-- Network.EasyBitcoin.Internal.Signatures,
Network.EasyBitcoin.Internal.Words,
Network.EasyBitcoin.Internal.Keys,
-- Network.EasyBitcoin.Internal.Script,
Network.EasyBitcoin.Internal.CurveConstants,
Network.EasyBitcoin.Internal.Base58,
Network.EasyBitcoin.Internal.ByteString
other-extensions: DataKinds, GADTs, TypeFamilies, EmptyDataDecls, ScopedTypeVariables, KindSignatures, StandaloneDeriving, PolyKinds, FlexibleInstances, GeneralizedNewtypeDeriving, PackageImports, FlexibleContexts, OverloadedStrings
build-depends: base >=4.7 && <4.8,
bytestring >=0.10 && <0.11,
binary >=0.7 && <0.8,
time >=1.4 && <1.5,
safe >=0.3 && <0.4,
byteable >=0.1 && <0.2,
deepseq >=1.3 && <1.4,
text >=1.2 && <1.3,
base16-bytestring >=0.1 && <0.2
-- hs-source-dirs:
default-language: Haskell2010