Update geval

This commit is contained in:
Filip Gralinski 2020-10-19 08:14:09 +02:00
parent 8dd90506d1
commit 499d14ed40
2 changed files with 5 additions and 1 deletions

View File

@ -60,6 +60,10 @@ current :: Diff a -> a
current (OneThing u) = u current (OneThing u) = u
current (TwoThings _ new) = new current (TwoThings _ new) = new
older :: Diff a -> a
older (OneThing u) = u
older (TwoThings old _) = old
class Diffable t where class Diffable t where
type DiffSettings t type DiffSettings t
type DiffResult t type DiffResult t

View File

@ -130,7 +130,7 @@ library
, filemanip , filemanip
, cryptohash , cryptohash
, markdown , markdown
, geval >= 1.37.2 && < 1.38 , geval >= 1.37.2 && < 1.39
, filepath , filepath
, yesod-table , yesod-table
, regex-tdfa , regex-tdfa