packages feed

merkle-tree-0.1.0: merkle-tree.cabal

-- This file has been generated from package.yaml by hpack version 0.19.3.
--
-- see: https://github.com/sol/hpack

name:                merkle-tree
version:             0.1.0
synopsis:            An implementation of a Merkle Tree and merkle tree proofs
homepage:            https://github.com/adjoint-io/merkle-tree#readme
bug-reports:         https://github.com/adjoint-io/merkle-tree/issues
license:             Apache
license-file:        LICENSE
maintainer:          Adjoint Inc. (info@adjoint.io)
category:            Development
build-type:          Simple
cabal-version:       >= 1.10

extra-source-files:
    README.md

source-repository head
  type: git
  location: https://github.com/adjoint-io/merkle-tree

library
  hs-source-dirs:
      src
  default-extensions: OverloadedStrings NoImplicitPrelude FlexibleInstances
  ghc-options: -fwarn-tabs -fwarn-incomplete-patterns -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -fwarn-redundant-constraints -fwarn-implicit-prelude -fwarn-overflowed-literals -fwarn-orphans -fwarn-identities -fwarn-dodgy-exports -fwarn-dodgy-imports -fwarn-duplicate-exports -fwarn-overlapping-patterns -fwarn-missing-fields -fwarn-missing-methods -fwarn-missing-signatures -fwarn-noncanonical-monad-instances -fwarn-unused-pattern-binds -fwarn-unused-type-patterns -fwarn-unrecognised-pragmas -fwarn-wrong-do-bind -fwarn-hi-shadowing -fno-warn-name-shadowing -fno-warn-unused-binds -fno-warn-unused-matches -fno-warn-unused-do-bind
  exposed-modules:
      Crypto.Hash.MerkleTree
  other-modules:
      Paths_merkle_tree
  build-depends:
      base >=4.7 && <5
    , bytestring
    , cereal
    , cryptonite >=0.21
    , memory
    , protolude >=0.2
    , random
  default-language: Haskell2010

test-suite merkle-test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
      test
  build-depends:
      QuickCheck
    , base >=4.7 && <5
    , bytestring
    , cereal
    , cryptonite >=0.21
    , memory
    , merkle-tree
    , protolude >=0.2
    , random
    , tasty
    , tasty-quickcheck
  other-modules:
      Paths_merkle_tree
  default-language: Haskell2010