Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make cargohold use amazonka instead of aws #1157

Merged
merged 17 commits into from
Jul 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions libs/ropes/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ library:
source-dirs: src
dependencies:
- aeson >=0.6
- aws >=0.10.2
- base ==4.*
- exceptions >=0.6
- http-client >=0.5
Expand All @@ -31,34 +30,3 @@ library:
- time >=1.1
- tinylog >=0.10.2
- yaml >=0.8.22
executables:
ropes-aws-auth-test:
main: Main.hs
source-dirs: test/integration-aws-auth
ghc-options:
- -threaded
dependencies:
- base >=4 && <5
- aws
- http-client
- ropes
- time
- tinylog
ropes-aws-test:
main: Main.hs
source-dirs: test/integration-aws
ghc-options:
- -threaded
dependencies:
- base >=4 && <5
- aws
- exceptions
- http-client
- http-client-tls
- resourcet
- ropes
- tasty >=0.2
- tasty-hunit >=0.2
- text >=0.11.3
- transformers
- tinylog
56 changes: 1 addition & 55 deletions libs/ropes/ropes.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cabal-version: 1.12
--
-- see: https://github.com/sol/hpack
--
-- hash: 8e1fc11eb8dfecf6b35bf33c8cd612ed3e50f371781a549f8728286a79acb547
-- hash: d24f5fff02a52bee31f4c44250bf1b220b95113bb66026289808204f560ad4bd

name: ropes
version: 0.4.20
Expand All @@ -19,8 +19,6 @@ build-type: Simple

library
exposed-modules:
Ropes.Aws
Ropes.Aws.Ses
Ropes.Nexmo
Ropes.Twilio
other-modules:
Expand All @@ -31,7 +29,6 @@ library
ghc-options: -O2 -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wpartial-fields -fwarn-tabs -optP-Wno-nonportable-include-path
build-depends:
aeson >=0.6
, aws >=0.10.2
, base ==4.*
, bytestring >=0.9
, errors >=2.0
Expand All @@ -50,54 +47,3 @@ library
, transformers >=0.3
, yaml >=0.8.22
default-language: Haskell2010

executable ropes-aws-auth-test
main-is: Main.hs
other-modules:
Paths_ropes
hs-source-dirs:
test/integration-aws-auth
default-extensions: AllowAmbiguousTypes BangPatterns ConstraintKinds DataKinds DefaultSignatures DerivingStrategies DeriveFunctor DeriveGeneric DeriveLift DeriveTraversable EmptyCase FlexibleContexts FlexibleInstances FunctionalDependencies GADTs InstanceSigs KindSignatures LambdaCase MultiParamTypeClasses MultiWayIf NamedFieldPuns NoImplicitPrelude OverloadedStrings PackageImports PatternSynonyms PolyKinds QuasiQuotes RankNTypes ScopedTypeVariables StandaloneDeriving TemplateHaskell TupleSections TypeApplications TypeFamilies TypeFamilyDependencies TypeOperators UndecidableInstances ViewPatterns
ghc-options: -O2 -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wpartial-fields -fwarn-tabs -optP-Wno-nonportable-include-path -threaded
build-depends:
aws
, base >=4 && <5
, bytestring >=0.9
, errors >=2.0
, http-client
, imports
, mime-mail >=0.4
, ropes
, semigroups >=0.11
, time
, tinylog
default-language: Haskell2010

executable ropes-aws-test
main-is: Main.hs
other-modules:
Tests.Ropes.Aws.Ses
Paths_ropes
hs-source-dirs:
test/integration-aws
default-extensions: AllowAmbiguousTypes BangPatterns ConstraintKinds DataKinds DefaultSignatures DerivingStrategies DeriveFunctor DeriveGeneric DeriveLift DeriveTraversable EmptyCase FlexibleContexts FlexibleInstances FunctionalDependencies GADTs InstanceSigs KindSignatures LambdaCase MultiParamTypeClasses MultiWayIf NamedFieldPuns NoImplicitPrelude OverloadedStrings PackageImports PatternSynonyms PolyKinds QuasiQuotes RankNTypes ScopedTypeVariables StandaloneDeriving TemplateHaskell TupleSections TypeApplications TypeFamilies TypeFamilyDependencies TypeOperators UndecidableInstances ViewPatterns
ghc-options: -O2 -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wpartial-fields -fwarn-tabs -optP-Wno-nonportable-include-path -threaded
build-depends:
aws
, base >=4 && <5
, bytestring >=0.9
, errors >=2.0
, exceptions
, http-client
, http-client-tls
, imports
, mime-mail >=0.4
, resourcet
, ropes
, semigroups >=0.11
, tasty >=0.2
, tasty-hunit >=0.2
, text >=0.11.3
, tinylog
, transformers
default-language: Haskell2010
216 changes: 0 additions & 216 deletions libs/ropes/src/Ropes/Aws.hs

This file was deleted.

34 changes: 0 additions & 34 deletions libs/ropes/src/Ropes/Aws/Ses.hs

This file was deleted.

Loading