packages feed

streamly-archive-0.3.0: streamly-archive.cabal

cabal-version:  3.0
name:           streamly-archive
version:        0.3.0
synopsis:       Stream data from archives using the streamly library.
description:    Please see the README on GitHub at <https://github.com/shlok/streamly-archive#readme>
category:       Archive, Codec, Streaming, Streamly
homepage:       https://github.com/shlok/streamly-archive#readme
bug-reports:    https://github.com/shlok/streamly-archive/issues
author:         Shlok Datye
maintainer:     sd-haskell@quant.is
copyright:      2024 Shlok Datye
license:        BSD-3-Clause
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md
data-files:
    test/data/sparse.tar

source-repository head
  type: git
  location: https://github.com/shlok/streamly-archive

library
  exposed-modules:
      Streamly.External.Archive
      Streamly.External.Archive.Internal.Foreign
  other-modules:
      Paths_streamly_archive
  autogen-modules:
      Paths_streamly_archive
  hs-source-dirs:
      src
  ghc-options: -Wall
  extra-libraries:
      archive
  build-depends:
      base >=4.7 && <5
    , bytestring >=0.10.10.0 && <0.12
    , containers >=0.6.2.1 && <0.8
    , streamly >=0.10.0 && <0.11
    , streamly-core >=0.2.0 && <0.3
  default-language: Haskell2010

test-suite streamly-archive-test
  type: exitcode-stdio-1.0
  main-is: TestSuite.hs
  other-modules:
      ReadmeMain
      Paths_streamly_archive
      Streamly.External.Archive.Tests
  autogen-modules:
      Paths_streamly_archive
  hs-source-dirs:
      test
  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
  extra-libraries:
      archive
  build-depends:
      async >=2.2.2 && <2.3
    , base >=4.7 && <5
    , bytestring >=0.10.10.0 && <0.12
    , containers >=0.6.2.1 && <0.8
    , cryptonite >=0.26
    , directory >=1.3.1 && <1.4
    , filepath >=1.4.2.1 && <1.5
    , QuickCheck >=2.13.2 && <2.15
    , split >=0.2.3.5 && <0.3
    , streamly >=0.10.0 && <0.11
    , streamly-archive
    , streamly-core >=0.2.0 && <0.3
    , tar >=0.5.1.1 && <0.6
    , tasty >=1.2.3 && <1.5
    , tasty-hunit >=0.10.1 && <0.11
    , tasty-quickcheck >=0.10.1.1 && <0.11
    , temporary >=1.3 && <1.4
    , zlib >=0.6.2.1 && <0.7
  default-language: Haskell2010