Skip to content

Commit f3ff1dc

Browse files
committed
change all haskoin references over in package.yaml
1 parent 02ea63b commit f3ff1dc

File tree

5 files changed

+10
-18
lines changed

5 files changed

+10
-18
lines changed

bitcoin.cabal

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ cabal-version: 1.12
66

77
name: bitcoin
88
version: 0.21.2
9-
synopsis: Bitcoin & Bitcoin Cash library for Haskell
10-
description: Please see the README on GitHub at <https://github.com/haskoin/haskoin-core#readme>
9+
synopsis: Bitcoin library for Haskell
10+
description: Please see the README on GitHub at <https://github.com/haskell-bitcoin/bitcoin#readme>
1111
category: Bitcoin, Finance, Network
12-
homepage: http://github.com/haskoin/haskoin#readme
13-
bug-reports: http://github.com/haskoin/haskoin/issues
12+
homepage: http://github.com/haskell-bitcoin/bitcoin#readme
13+
bug-reports: http://github.com/haskell-bitcoin/bitcoin/issues
1414
author: Philippe Laprade,
1515
Jean-Pierre Rupp,
1616
Matthew Wraith,
@@ -39,7 +39,7 @@ extra-source-files:
3939

4040
source-repository head
4141
type: git
42-
location: git://github.com/haskoin/haskoin.git
42+
location: git://github.com/haskell-bitcoin/bitcoin.git
4343

4444
library
4545
exposed-modules:

package.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: bitcoin
22
version: 0.21.2
3-
synopsis: Bitcoin & Bitcoin Cash library for Haskell
4-
description: Please see the README on GitHub at <https://github.com/haskoin/haskoin-core#readme>
3+
synopsis: Bitcoin library for Haskell
4+
description: Please see the README on GitHub at <https://github.com/haskell-bitcoin/bitcoin#readme>
55
category: Bitcoin, Finance, Network
66
author:
77
- Philippe Laprade
@@ -11,9 +11,9 @@ author:
1111
maintainer: [email protected]
1212
license: MIT
1313
license-file: LICENSE
14-
homepage: http://github.com/haskoin/haskoin#readme
15-
git: git://github.com/haskoin/haskoin.git
16-
bug-reports: http://github.com/haskoin/haskoin/issues
14+
homepage: http://github.com/haskell-bitcoin/bitcoin#readme
15+
git: git://github.com/haskell-bitcoin/bitcoin.git
16+
bug-reports: http://github.com/haskell-bitcoin/bitcoin/issues
1717
extra-source-files:
1818
- data/*.json
1919
- README.md
@@ -22,10 +22,8 @@ dependencies:
2222
- array >= 0.5.4.0
2323
- base >=4.9 && <5
2424
- base16 >= 0.3.0.1
25-
# - binary >= 0.8.8
2625
- bytes >= 0.17
2726
- bytestring >= 0.10.10.0
28-
# - cereal >= 0.5.8
2927
- containers >= 0.6.2.1
3028
- cryptonite >= 0.26
3129
- deepseq >= 1.4.4.0

src/Haskoin/Block/Common.hs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ module Haskoin.Block.Common (
3232

3333
import Control.DeepSeq
3434
import Control.Monad (forM_, liftM2, mzero, replicateM, (<=<))
35-
import Data.Binary (Binary (..))
3635
import Data.Bits (shiftL, shiftR, (.&.), (.|.))
3736
import qualified Data.ByteString as B
3837
import Data.ByteString.Builder (char7)
@@ -52,7 +51,6 @@ import Data.Bytes.Put (
5251
import Data.Bytes.Serial (Serial (..))
5352
import Data.Hashable (Hashable)
5453
import Data.Maybe (fromMaybe)
55-
import Data.Serialize (Serialize (..))
5654
import Data.String (IsString, fromString)
5755
import Data.String.Conversions (cs)
5856
import Data.Text (Text)

src/Haskoin/Block/Headers.hs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ import Control.Monad.Trans.State.Strict as State (
8585
gets,
8686
modify,
8787
)
88-
import Data.Binary (Binary (..))
8988
import Data.Bits (shiftL, shiftR, (.&.))
9089
import qualified Data.ByteString as B
9190
import Data.ByteString.Short (
@@ -102,7 +101,6 @@ import qualified Data.HashMap.Strict as HashMap
102101
import Data.Hashable
103102
import Data.List (sort, sortBy)
104103
import Data.Maybe (fromMaybe, listToMaybe)
105-
import Data.Serialize (Serialize (..))
106104
import Data.Typeable (Typeable)
107105
import Data.Word (Word32, Word64)
108106
import GHC.Generics (Generic)

src/Haskoin/Block/Merkle.hs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ module Haskoin.Block.Merkle (
3636

3737
import Control.DeepSeq
3838
import Control.Monad (forM_, replicateM, when)
39-
import Data.Binary (Binary (..))
4039
import Data.Bits
4140
import qualified Data.ByteString as BS
4241
import Data.Bytes.Get
@@ -45,7 +44,6 @@ import Data.Bytes.Serial
4544
import Data.Either (isRight)
4645
import Data.Hashable
4746
import Data.Maybe
48-
import Data.Serialize (Serialize (..))
4947
import Data.Word (Word32, Word8)
5048
import GHC.Generics
5149
import Haskoin.Block.Common

0 commit comments

Comments
 (0)