packages feed

tries-0.0.6: tries.cabal

cabal-version: 1.12

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

name:           tries
version:        0.0.6
synopsis:       Various trie implementations in Haskell
description:    Please see the README on Github at <https://git.localcooking.com/tooling/tries#readme>
category:       Data, Tree
homepage:       https://github.com/athanclark/tries#readme
bug-reports:    https://github.com/athanclark/tries/issues
author:         Athan Clark
maintainer:     athan.clark@localcooking.com
copyright:      2018 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/tries

library
  exposed-modules:
      Data.Trie.Class
      Data.Trie.HashMap
      Data.Trie.Knuth
      Data.Trie.List
      Data.Trie.Map
      Data.Trie.Pseudo
  other-modules:
      Paths_tries
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      QuickCheck >=2.9.2
    , base >=4.11 && <5.0
    , bytestring
    , composition
    , containers
    , deepseq
    , hashable
    , keys
    , quickcheck-instances
    , rose-trees >=0.0.2.1
    , semigroups
    , sets >=0.0.6
    , unordered-containers
  default-language: Haskell2010

test-suite tries-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Data.TrieSpec
      Paths_tries
  hs-source-dirs:
      test
  ghc-options: -Wall -threaded -rtsopts -Wall -with-rtsopts=-N
  build-depends:
      QuickCheck
    , base >=4.11 && <5.0
    , bytestring
    , composition
    , containers
    , deepseq
    , hashable
    , keys
    , mtl
    , quickcheck-instances
    , rose-trees >=0.0.2.1
    , semigroups
    , sets >=0.0.6
    , tasty
    , tasty-quickcheck
    , tries
    , unordered-containers
  default-language: Haskell2010

benchmark tries-bench
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
      Build
      Paths_tries
  hs-source-dirs:
      bench
  ghc-options: -Wall -threaded -rtsopts -Wall -with-rtsopts=-N
  build-depends:
      QuickCheck >=2.9.2
    , base >=4.11 && <5.0
    , bytestring
    , composition
    , containers
    , criterion
    , deepseq
    , hashable
    , keys
    , mtl
    , quickcheck-instances
    , rose-trees
    , semigroups
    , sets >=0.0.6
    , tries
    , unordered-containers
  default-language: Haskell2010

benchmark tries-bench-lookup
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
      Build
      Paths_tries
  hs-source-dirs:
      bench-lookup
  ghc-options: -Wall -threaded -rtsopts -Wall -with-rtsopts=-N
  build-depends:
      QuickCheck >=2.9.2
    , base >=4.11 && <5.0
    , bytestring
    , composition
    , containers
    , criterion
    , deepseq
    , hashable
    , keys
    , mtl
    , quickcheck-instances
    , rose-trees
    , semigroups
    , sets >=0.0.6
    , tries
    , unordered-containers
  default-language: Haskell2010