Skip to content

Commit e435a48

Browse files
committed
Updated to stack LTS-23.3
1 parent 468fe7a commit e435a48

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

aws-ec2-knownhosts.cabal

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ library
2828
, aeson >= 2.0 && < 2.3
2929
, async >= 2.0 && < 2.3
3030
, attoparsec >= 0.12 && < 0.15
31-
, bytestring >= 0.10 && < 0.12
31+
, bytestring >= 0.10 && < 0.13
3232
, directory >= 1.2 && < 1.4
33-
, filepath >= 1.4 && < 1.5
33+
, filepath >= 1.4 && < 1.6
3434
, io-streams >= 1.3.4 && < 1.6
3535
, process >= 1.4 && < 1.7
3636
, text >= 2.0 && < 2.3
@@ -56,7 +56,8 @@ executable aws-ec2-knownhosts
5656
ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields -O2 -rtsopts
5757

5858
build-depends: base >= 4.7 && < 5
59-
, aeson >= 2.0 && < 2.3
59+
, aeson >= 2.2 && < 2.3
60+
, attoparsec-aeson >= 2.2 && < 2.3
6061
, aws-ec2-knownhosts
6162
, io-streams >= 1.1 && < 1.6
6263
, optparse-applicative >= 0.16 && < 0.19
@@ -69,7 +70,8 @@ executable aws-ec2-keysync
6970
ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields -O2 -rtsopts
7071

7172
build-depends: base >= 4.7 && < 5
72-
, aeson >= 2.0 && < 2.3
73+
, aeson >= 2.2 && < 2.3
74+
, attoparsec-aeson >= 2.2 && < 2.3
7375
, aws-ec2-knownhosts
7476
, io-streams >= 1.1 && < 1.6
7577
, text >= 2.0 && < 2.3

exec/aws-ec2-keysync/Main.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ module Main where
55
import AWS.PubKeys (writePubKeys)
66
import AWS.Types (Ec2Instance (..))
77
import Control.Monad ((<=<))
8-
import Data.Aeson (Result (..), fromJSON, json')
8+
import Data.Aeson (Result (..), fromJSON)
9+
import Data.Aeson.Parser (json')
910
import Data.Bool (bool)
1011
import Data.Function (on)
1112
import Data.List (foldl')

exec/aws-ec2-knownhosts/Main.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ module Main where
44

55
import AWS.KnownHosts (updateKnownHosts)
66
import AWS.Types (Ec2Instance (..))
7-
import Data.Aeson (Result (..), fromJSON, json)
7+
import Data.Aeson (Result (..), fromJSON)
8+
import Data.Aeson.Parser (json)
89
import Options.Applicative (Parser)
910
import qualified Options.Applicative as Opt
1011
import qualified System.IO.Streams as Streams

stack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resolver: lts-22.22
1+
resolver: lts-23.3
22
flags: {}
33
packages:
44
- "."

stack.yaml.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
packages: []
77
snapshots:
88
- completed:
9-
sha256: 4be1ca5d31689b524a7f0f17a439bbe9136465213edc498e9a395899a670f2aa
10-
size: 718486
11-
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/22/22.yaml
12-
original: lts-22.22
9+
sha256: dd89d2322cb5af74c6ab9d96c0c5f6c8e6653e0c991d619b4bb141a49cb98668
10+
size: 679282
11+
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/23/3.yaml
12+
original: lts-23.3

0 commit comments

Comments
 (0)