Skip to content

Commit 6663398

Browse files
authored
Merge pull request #47 from haskell-works/switch-from-CsPoppy-to-CsPoppy1
Switch from CsPoppy to CsPoppy1
2 parents 306cbfd + f6dbf72 commit 6663398

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

app/Main.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import HaskellWorks.Data.BalancedParens.RangeMin2
1313
import HaskellWorks.Data.BalancedParens.Simple
1414
import HaskellWorks.Data.Bits.BitShown
1515
import HaskellWorks.Data.FromByteString
16-
import HaskellWorks.Data.RankSelect.CsPoppy
16+
import HaskellWorks.Data.RankSelect.CsPoppy1
1717
import HaskellWorks.Data.TreeCursor
1818
import HaskellWorks.Data.Xml.Decode
1919
import HaskellWorks.Data.Xml.DecodeResult
@@ -27,7 +27,7 @@ import qualified Data.ByteString as BS
2727
import qualified Data.Vector.Storable as DVS
2828

2929
type RawCursor = XmlCursor BS.ByteString (BitShown (DVS.Vector Word64)) (SimpleBalancedParens (DVS.Vector Word64))
30-
type FastCursor = XmlCursor BS.ByteString CsPoppy (RangeMin2 CsPoppy)
30+
type FastCursor = XmlCursor BS.ByteString CsPoppy1 (RangeMin2 CsPoppy1)
3131

3232
-- | Read an XML file into memory and return a raw cursor initialised to the
3333
-- start of the XML document.

hw-xml.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ common hw-conduit { build-depends: hw-conduit >=
4444
common hw-hspec-hedgehog { build-depends: hw-hspec-hedgehog >= 0.1 && < 0.2 }
4545
common hw-parser { build-depends: hw-parser >= 0.1.0.1 && < 0.2 }
4646
common hw-prim { build-depends: hw-prim >= 0.6.2.28 && < 0.7 }
47-
common hw-rankselect { build-depends: hw-rankselect >= 0.13.1.0 && < 0.14 }
47+
common hw-rankselect { build-depends: hw-rankselect >= 0.13.2.0 && < 0.14 }
4848
common hw-rankselect-base { build-depends: hw-rankselect-base >= 0.3.2.1 && < 0.4 }
4949
common lens { build-depends: lens >= 4.17.1 && < 5.0 }
5050
common mmap { build-depends: mmap >= 0.5.9 && < 0.6 }

src/HaskellWorks/Data/Xml/RawValue.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module HaskellWorks.Data.Xml.RawValue
1010
) where
1111

1212
import Data.List
13-
import Data.Monoid
13+
import Data.Semigroup ((<>))
1414
import HaskellWorks.Data.Xml.Grammar
1515
import HaskellWorks.Data.Xml.Succinct.Index
1616
import Text.PrettyPrint.ANSI.Leijen hiding ((<$>), (<>))

0 commit comments

Comments
 (0)