Skip to content

Commit

Permalink
Fix data-default dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrolls committed Oct 26, 2024
1 parent 78f8fd3 commit 8811689
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion shellify.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ library
hs-source-dirs: src
build-depends:
containers >=0.6.5.1 && <0.8,
data-default-class >=0.1.2.0 && <0.2,
data-default >=0.8 && <0.9,
directory >=1.3.6.2 && <1.4,
extra >=1.7.13 && <1.9,
HStringTemplate >=0.8.8 && <0.9,
Expand Down
2 changes: 1 addition & 1 deletion src/Options.hs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Control.Applicative ((<|>))
import Control.Arrow ((+++))
import Control.Monad (when)
import Data.Bool (bool)
import Data.Default.Class (Default(def))
import Data.Default (Default(def))
import Data.List (find, sort)
import Data.Maybe (fromMaybe)
import Data.Text (isInfixOf, isPrefixOf, pack, replace, splitOn, stripPrefix, takeWhile, Text(), unpack)
Expand Down

0 comments on commit 8811689

Please sign in to comment.