packages feed

rose-trees-0.0.4.5: rose-trees.cabal

cabal-version: 1.12

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

name:           rose-trees
version:        0.0.4.5
synopsis:       Various trie implementations in Haskell
description:    Please see the README on Github at <https://github.com/athanclark/rose-trees#readme>
category:       Data, Tree
homepage:       https://github.com/athanclark/rose-trees#readme
bug-reports:    https://github.com/athanclark/rose-trees/issues
author:         Athan Clark
maintainer:     athan.clark@gmail.com
copyright:      2015, 2016, 2017, 2018, 2019, 2020 Athan Clark
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md

source-repository head
  type: git
  location: https://github.com/athanclark/rose-trees

library
  exposed-modules:
      Data.Tree.Hash
      Data.Tree.Knuth
      Data.Tree.Knuth.Forest
      Data.Tree.Rose
      Data.Tree.Set
  other-modules:
      Paths_rose_trees
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      QuickCheck >=2.9.2
    , base >=4.11 && <5.0
    , containers
    , deepseq
    , hashable
    , mtl
    , quickcheck-instances
    , semigroupoids
    , semigroups
    , sets >=0.0.5
    , unordered-containers
    , witherable >=0.2
  default-language: Haskell2010

test-suite rose-trees-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Data.Tree.RoseSpec
      Paths_rose_trees
  hs-source-dirs:
      test
  ghc-options: -Wall -threaded -rtsopts -Wall -with-rtsopts=-N
  build-depends:
      QuickCheck
    , base >=4.11 && <5.0
    , containers
    , deepseq
    , hashable
    , mtl
    , quickcheck-instances
    , rose-trees
    , semigroupoids
    , semigroups
    , sets >=0.0.5
    , tasty
    , tasty-quickcheck
    , unordered-containers
    , witherable >=0.2
  default-language: Haskell2010

benchmark rose-trees-bench
  type: exitcode-stdio-1.0
  main-is: Bench.hs
  other-modules:
      Data.Build
      Data.Tree.HashBench
      Data.Tree.KnuthBench
      Data.Tree.SetBench
      Data.TreeBench
      Paths_rose_trees
  hs-source-dirs:
      bench
  ghc-options: -Wall -threaded -rtsopts -Wall -with-rtsopts=-N
  build-depends:
      QuickCheck >=2.9.2
    , base >=4.11 && <5.0
    , containers
    , criterion
    , deepseq
    , hashable
    , mtl
    , quickcheck-instances
    , rose-trees
    , semigroupoids
    , semigroups
    , sets >=0.0.5
    , unordered-containers
    , witherable >=0.2
  default-language: Haskell2010