packages feed

samsort-0.1.0.0: samsort.cabal

cabal-version:      3.0
name:               samsort
version:            0.1.0.0
synopsis:           A stable adaptive mergesort implementation
description:        A stable adaptive mergesort implementation.
homepage:           https://github.com/meooow25/samsort
bug-reports:        https://github.com/meooow25/samsort/issues
license:            BSD-3-Clause
license-file:       LICENSE
author:             Soumik Sarkar
maintainer:         soumiksarkar.3120@gmail.com
copyright:          (c) 2024 Soumik Sarkar
category:           Data
build-type:         Simple

extra-doc-files:
    CHANGELOG.md
    HOWTO.md
    README.md

tested-with:
    GHC == 8.4.4
  , GHC == 8.6.5
  , GHC == 8.8.4
  , GHC == 8.10.7
  , GHC == 9.0.2
  , GHC == 9.2.8
  , GHC == 9.4.8
  , GHC == 9.6.4
  , GHC == 9.8.1

source-repository head
    type:     git
    location: https://github.com/meooow25/samsort.git

common warnings
    ghc-options: -Wall

library
    import:           warnings

    exposed-modules:
        Data.SamSort

    build-depends:
        base >= 4.11 && < 5

    hs-source-dirs:   src
    default-language: Haskell2010

test-suite samsort-test
    import:           warnings

    main-is:          Main.hs
    build-depends:
        base
      , samsort
      , primitive
      , QuickCheck
      , tasty
      , tasty-quickcheck

    default-language: Haskell2010
    type:             exitcode-stdio-1.0
    hs-source-dirs:   test