packages feed

radixtree-0.6.0.0: radixtree.cabal

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

name:           radixtree
version:        0.6.0.0
description:    A prefix-tree parsing library
category:       Web
homepage:       https://gitlab.com/transportengineering/rnd/radixtree
author:         Mike Ledger
maintainer:     mike@quasimal.com
copyright:      2017-2019 Mike Ledger
license:        BSD3
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

source-repository head
  type: git
  location: https://gitlab.com/tranpsortengineering/rnd/radixtree

library
  exposed-modules:
      Data.RadixTree
  other-modules:
      Paths_radixtree
  hs-source-dirs:
      src
  build-depends:
      base >=4.7 && <5
    , containers >=0.5
    , deepseq
    , microlens
    , mtl >=2.0
    , parsers >=0.12
    , text
    , vector
  default-language: Haskell2010

test-suite radixtree-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_radixtree
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      attoparsec
    , base
    , radixtree
    , smallcheck
    , tasty
    , tasty-smallcheck
    , text
  default-language: Haskell2010

benchmark radixtree-parsing
  type: exitcode-stdio-1.0
  main-is: Parsing.hs
  hs-source-dirs: bench
  ghc-options: -O2
  build-depends:
      attoparsec
    , base
    , criterion
    , deepseq
    , radixtree
    , text
    , vector
    , QuasiText
    , ghc-compact
  default-language: Haskell2010

benchmark radixtree-search
  type: exitcode-stdio-1.0
  main-is: Search.hs
  hs-source-dirs: bench
  ghc-options: -O2
  build-depends:
      attoparsec
    , base
    , criterion
    , deepseq
    , radixtree
    , text
    , vector
    , QuasiText
  default-language: Haskell2010