skeletal-set-0.1.0.0: skeletal-set.cabal
-- This file has been generated from package.yaml by hpack version 0.20.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: cece4f190ab5fb3989e1444ed726ce512791d2156618fb401c66949ebc717d36
name: skeletal-set
version: 0.1.0.0
synopsis: Skeletal set - a set with equivalence relation different from equality
description: Skeletal Set is a set equipped with an equivalence relation. It is a useful data structure in cases where equivalence is chosen not to be equality. One can use it to influence the memberships of the elements more strictly than in sets, and run computations when conflicts between elements are found.
You can find more deatails in `Data.SkeletalSet`
category: Data
author: Pavlo Kerestey
maintainer: kerestey@global.de
copyright: Global Access Internet Services GmbH
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
changelog.md
README.md
library
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, containers >=0.5 && <0.6
exposed-modules:
Data.SkeletalSet
Data.SkeletalSet.Equivalence
Data.SkeletalSet.Types
other-modules:
Paths_skeletal_set
default-language: Haskell2010
test-suite skeletal-set-test
type: exitcode-stdio-1.0
main-is: RunTests.hs
hs-source-dirs:
tests
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, containers >=0.5 && <0.6
, mtl
, skeletal-set
, smallcheck
, tasty
, tasty-discover
, tasty-hunit
, tasty-quickcheck
, tasty-smallcheck
other-modules:
Data.SkeletalSetTest
Paths_skeletal_set
default-language: Haskell2010