forked from juspay/haskell-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update beckn compatible haskell-sequelize
- Loading branch information
1 parent
2c9eb73
commit 3abc8fe
Showing
10 changed files
with
210 additions
and
242 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,3 @@ | |
*~ | ||
dist-newstyle | ||
.dir-locals.el | ||
*.local | ||
dist-local-build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: sequelize | ||
version: 1.1.0.0 | ||
license: BSD3 | ||
author: "Artyom Kazak" | ||
maintainer: "[email protected]" | ||
copyright: "2020 Juspay" | ||
|
||
extra-source-files: | ||
- README.md | ||
|
||
description: A port of <https://github.com/juspay/purescript-sequelize> into Haskell | ||
|
||
default-extensions: | ||
- AllowAmbiguousTypes | ||
- RankNTypes | ||
- ScopedTypeVariables | ||
- StandaloneDeriving | ||
- EmptyDataDecls | ||
- FlexibleContexts | ||
- FlexibleInstances | ||
- FunctionalDependencies | ||
- KindSignatures | ||
- TypeOperators | ||
- MultiParamTypeClasses | ||
- TypeFamilies | ||
- OverloadedLabels | ||
- OverloadedStrings | ||
- DeriveFunctor | ||
- DeriveGeneric | ||
- DataKinds | ||
- DerivingStrategies | ||
- ConstraintKinds | ||
- UndecidableInstances | ||
- InstanceSigs | ||
- BlockArguments | ||
- LambdaCase | ||
- EmptyDataDeriving | ||
- TypeOperators | ||
- ViewPatterns | ||
- KindSignatures | ||
|
||
dependencies: | ||
- base >= 4.7 && < 5 | ||
- unordered-containers | ||
- vector | ||
- containers | ||
- beam-core | ||
- beam-mysql | ||
- beam-postgres | ||
- beam-sqlite | ||
- generic-lens | ||
- text | ||
- bytestring | ||
- named | ||
- aeson | ||
|
||
ghc-options: | ||
- -Wall | ||
|
||
library: | ||
source-dirs: | ||
- src | ||
|
||
tests: | ||
sequelize-test: | ||
main: Test.hs | ||
source-dirs: | ||
- test | ||
ghc-options: | ||
- -threaded | ||
- -rtsopts | ||
- -with-rtsopts=-N | ||
dependencies: | ||
- sequelize | ||
- tasty | ||
- tasty-hunit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cabal-version: 2.0 | ||
cabal-version: 1.12 | ||
|
||
-- This file has been generated from package.yaml by hpack version 0.33.0. | ||
-- | ||
|
@@ -7,7 +7,7 @@ cabal-version: 2.0 | |
-- hash: 492410794b7d56b74a2a0cc2cb2d4ea37d2c1711251fc612e511aab5adfc35e6 | ||
|
||
name: sequelize | ||
version: 1.1.1.0 | ||
version: 1.1.0.0 | ||
description: A port of <https://github.com/juspay/purescript-sequelize> into Haskell | ||
author: Artyom Kazak | ||
maintainer: [email protected] | ||
|
@@ -30,10 +30,10 @@ library | |
build-depends: | ||
aeson | ||
, base >=4.7 && <5 | ||
, beam-core ^>=0.9.0.0 | ||
, beam-mysql ^>=1.3.0.4 | ||
, beam-postgres ^>=0.5.0.0 | ||
, beam-sqlite ^>=0.5.0.0 | ||
, beam-core | ||
, beam-mysql | ||
, beam-postgres | ||
, beam-sqlite | ||
, bytestring | ||
, containers | ||
, generic-lens | ||
|
@@ -55,10 +55,10 @@ test-suite sequelize-test | |
build-depends: | ||
aeson | ||
, base >=4.7 && <5 | ||
, beam-core ^>=0.9.0.0 | ||
, beam-mysql ^>=1.3.0.4 | ||
, beam-postgres ^>=0.5.0.0 | ||
, beam-sqlite ^>=0.5.0.0 | ||
, beam-core | ||
, beam-mysql | ||
, beam-postgres | ||
, beam-sqlite | ||
, bytestring | ||
, containers | ||
, generic-lens | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.