packages feed

bytetrie-0.1.0.1: bytetrie.cabal

cabal-version:   3.0
name:            bytetrie
version:         0.1.0.1
author:          Eric Demko
maintainer:      amartin@layer3com.com
copyright:       2020 Layer 3 Communications
category:        Data
build-type:      Simple
synopsis:        Tries with Bytes as keys.
description:
  Tries with 'Bytes' (equiv. 'ByteArray') as keys. This implementation is
  optimized for performing queries rather than updating the structure
  repeatedly.

homepage:        https://github.com/byteverse/bytetrie
bug-reports:     https://github.com/byteverse/bytetrie/issues
license:         BSD-3-Clause
license-file:    LICENSE
extra-doc-files: CHANGELOG.md

library
  exposed-modules:  Data.Trie.Word8
  build-depends:
    , base             >=4.12   && <5
    , bifunctors       >=5.6.1  && <5.7
    , byte-containers  >=0.1    && <0.2.0
    , bytebuild        >=0.3.16 && <0.4
    , byteslice        >=0.2.13 && <0.3
    , primitive        >=0.7    && <0.10
    , unpacked-maybe   >=0.1.0  && <0.2

  hs-source-dirs:   src
  default-language: Haskell2010
  ghc-options:      -Wall -O2

test-suite test
  main-is:          Main.hs
  type:             exitcode-stdio-1.0
  build-depends:
    , base                >=4.12   && <5
    , byte-containers     >=0.1    && <0.2.0
    , byteslice           >=0.2.13 && <0.3
    , bytetrie
    , primitive           >=0.7    && <0.10
    , primitive-unlifted  >=0.1.2  && <0.2
    , quickcheck-classes  >=0.6.4
    , tasty
    , tasty-hunit         >=0.10
    , tasty-quickcheck
    , unpacked-maybe      >=0.1.0  && <0.2

  other-modules:    TestData
  hs-source-dirs:   test common
  default-language: Haskell2010
  ghc-options:      -Wall -O2

source-repository head
  type:     git
  location: git://github.com/byteverse/bytetrie.git