Cabal revisions of union-find-0.2
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
-Name: union-find-Version: 0.2-License: BSD3-License-File: LICENSE-Author: Thomas Schilling <nominolo@googlemail.com>-Maintainer: Thomas Schilling <nominolo@googlemail.com>-Homepage: http://github.com/nominolo/union-find-Synopsis: Efficient union and equivalence testing of sets.-Description:- The Union\/Find algorithm implements these operations in- (effectively) constant-time:- .- 1. Check whether two elements are in the same equivalence class.- .- 2. Create a union of two equivalence classes.- .- 3. Look up the descriptor of the equivalence class.- -Category: Algorithms, Data-Stability: provisional-Build-Type: Simple-Cabal-Version: >= 1.6-Extra-Source-Files: README.md-Bug-Reports: http://github.com/nominolo/union-find/issues-Source-Repository head- Type: git- Location: git://github.com/nominolo/union-find--Library- Build-Depends:- base >= 4 && < 5, containers >= 0.3, transformers >= 0.2- GHC-Options:- -Wall- Exposed-Modules:- Control.Monad.Trans.UnionFind- Data.UnionFind.IO- Data.UnionFind.ST- Data.UnionFind.IntMap- Hs-Source-Dirs: src-+Name: union-find +Version: 0.2 +x-revision: 1 +License: BSD3 +License-File: LICENSE +Author: Thomas Schilling <nominolo@googlemail.com> +Maintainer: Thomas Schilling <nominolo@googlemail.com> +Homepage: http://github.com/nominolo/union-find +Synopsis: Efficient union and equivalence testing of sets. +Description: + The Union\/Find algorithm implements these operations in + (effectively) constant-time: + . + 1. Check whether two elements are in the same equivalence class. + . + 2. Create a union of two equivalence classes. + . + 3. Look up the descriptor of the equivalence class. + +Category: Algorithms, Data +Stability: provisional +Build-Type: Simple +Cabal-Version: >= 1.6 +Extra-Source-Files: README.md +Bug-Reports: http://github.com/nominolo/union-find/issues +Source-Repository head + Type: git + Location: git://github.com/nominolo/union-find + +Library + Build-Depends: + base >= 4.4 && < 5, containers >= 0.3, transformers >= 0.2 + GHC-Options: + -Wall + Exposed-Modules: + Control.Monad.Trans.UnionFind + Data.UnionFind.IO + Data.UnionFind.ST + Data.UnionFind.IntMap + Hs-Source-Dirs: src +
revision 2
Name: union-find Version: 0.2 -x-revision: 1 +x-revision: 2 License: BSD3 License-File: LICENSE Author: Thomas Schilling <nominolo@googlemail.com> Library Build-Depends: - base >= 4.4 && < 5, containers >= 0.3, transformers >= 0.2 + base >= 4.4 && < 4.17, containers >= 0.3, transformers >= 0.2 + -- Due to missing instance MonadFail ST, does not build with GHC 9.4 GHC-Options: -Wall Exposed-Modules: