Skip to content

Commit

Permalink
change all haskoin references over in package.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ProofOfKeags committed Sep 9, 2022
1 parent 02ea63b commit f3ff1dc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 18 deletions.
10 changes: 5 additions & 5 deletions bitcoin.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ cabal-version: 1.12

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

source-repository head
type: git
location: git://github.com/haskoin/haskoin.git
location: git://github.com/haskell-bitcoin/bitcoin.git

library
exposed-modules:
Expand Down
12 changes: 5 additions & 7 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: bitcoin
version: 0.21.2
synopsis: Bitcoin & Bitcoin Cash library for Haskell
description: Please see the README on GitHub at <https://github.com/haskoin/haskoin-core#readme>
synopsis: Bitcoin library for Haskell
description: Please see the README on GitHub at <https://github.com/haskell-bitcoin/bitcoin#readme>
category: Bitcoin, Finance, Network
author:
- Philippe Laprade
Expand All @@ -11,9 +11,9 @@ author:
maintainer: [email protected]
license: MIT
license-file: LICENSE
homepage: http://github.com/haskoin/haskoin#readme
git: git://github.com/haskoin/haskoin.git
bug-reports: http://github.com/haskoin/haskoin/issues
homepage: http://github.com/haskell-bitcoin/bitcoin#readme
git: git://github.com/haskell-bitcoin/bitcoin.git
bug-reports: http://github.com/haskell-bitcoin/bitcoin/issues
extra-source-files:
- data/*.json
- README.md
Expand All @@ -22,10 +22,8 @@ dependencies:
- array >= 0.5.4.0
- base >=4.9 && <5
- base16 >= 0.3.0.1
# - binary >= 0.8.8
- bytes >= 0.17
- bytestring >= 0.10.10.0
# - cereal >= 0.5.8
- containers >= 0.6.2.1
- cryptonite >= 0.26
- deepseq >= 1.4.4.0
Expand Down
2 changes: 0 additions & 2 deletions src/Haskoin/Block/Common.hs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ module Haskoin.Block.Common (

import Control.DeepSeq
import Control.Monad (forM_, liftM2, mzero, replicateM, (<=<))
import Data.Binary (Binary (..))
import Data.Bits (shiftL, shiftR, (.&.), (.|.))
import qualified Data.ByteString as B
import Data.ByteString.Builder (char7)
Expand All @@ -52,7 +51,6 @@ import Data.Bytes.Put (
import Data.Bytes.Serial (Serial (..))
import Data.Hashable (Hashable)
import Data.Maybe (fromMaybe)
import Data.Serialize (Serialize (..))
import Data.String (IsString, fromString)
import Data.String.Conversions (cs)
import Data.Text (Text)
Expand Down
2 changes: 0 additions & 2 deletions src/Haskoin/Block/Headers.hs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ import Control.Monad.Trans.State.Strict as State (
gets,
modify,
)
import Data.Binary (Binary (..))
import Data.Bits (shiftL, shiftR, (.&.))
import qualified Data.ByteString as B
import Data.ByteString.Short (
Expand All @@ -102,7 +101,6 @@ import qualified Data.HashMap.Strict as HashMap
import Data.Hashable
import Data.List (sort, sortBy)
import Data.Maybe (fromMaybe, listToMaybe)
import Data.Serialize (Serialize (..))
import Data.Typeable (Typeable)
import Data.Word (Word32, Word64)
import GHC.Generics (Generic)
Expand Down
2 changes: 0 additions & 2 deletions src/Haskoin/Block/Merkle.hs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ module Haskoin.Block.Merkle (

import Control.DeepSeq
import Control.Monad (forM_, replicateM, when)
import Data.Binary (Binary (..))
import Data.Bits
import qualified Data.ByteString as BS
import Data.Bytes.Get
Expand All @@ -45,7 +44,6 @@ import Data.Bytes.Serial
import Data.Either (isRight)
import Data.Hashable
import Data.Maybe
import Data.Serialize (Serialize (..))
import Data.Word (Word32, Word8)
import GHC.Generics
import Haskoin.Block.Common
Expand Down

0 comments on commit f3ff1dc

Please sign in to comment.