Merge pull request #3 from mitchellwrosen/master

Allow massive ==1.0.*
This commit is contained in:
Rúnar 2023-05-20 13:15:36 -04:00 committed by GitHub
commit a1c151f094
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ tested-with: GHC == 8.8.4, GHC == 8.10.4
synopsis: Fuzzy text matching synopsis: Fuzzy text matching
description: A package that provides an API for fuzzy text search in Haskell, using a modified version of the Smith-Waterman algorithm. The search is intended to behave similarly to the excellent fzf tool by Junegunn Choi. description: A package that provides an API for fuzzy text search in Haskell, using a modified version of the Smith-Waterman algorithm. The search is intended to behave similarly to the excellent fzf tool by Junegunn Choi.
category: Text category: Text
extra-source-files: extra-source-files:
.gitignore .gitignore
CHANGELOG.md CHANGELOG.md
README.markdown README.markdown
@ -23,10 +23,10 @@ source-repository head
type: git type: git
location: https://github.com/runarorama/fuzzyfind location: https://github.com/runarorama/fuzzyfind
library library
exposed-modules: Text.FuzzyFind exposed-modules: Text.FuzzyFind
other-extensions: DeriveGeneric, OverloadedLists, ScopedTypeVariables, ViewPatterns other-extensions: DeriveGeneric, OverloadedLists, ScopedTypeVariables, ViewPatterns
build-depends: base ==4.*, massiv ==0.6.*, containers ==0.6.*, text ==1.2.* build-depends: base ==4.*, massiv ==0.6.* || ==1.0.*, containers ==0.6.*, text ==1.2.*
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010