Remove deps deemed unnecessary by packunused
Also sort build-depends
This commit is contained in:
+63
-73
@@ -30,37 +30,37 @@ executable postgrest
|
|||||||
main-is: PostgREST/Main.hs
|
main-is: PostgREST/Main.hs
|
||||||
default-extensions: OverloadedStrings, ScopedTypeVariables, QuasiQuotes
|
default-extensions: OverloadedStrings, ScopedTypeVariables, QuasiQuotes
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
build-depends: base >= 4.8 && < 5
|
build-depends: aeson >= 0.8
|
||||||
, postgrest
|
, base >= 4.8 && < 5
|
||||||
|
, bytestring
|
||||||
|
, case-insensitive
|
||||||
|
, cassava
|
||||||
|
, containers
|
||||||
|
, errors
|
||||||
, hasql >= 0.7.3 && < 0.8
|
, hasql >= 0.7.3 && < 0.8
|
||||||
, hasql-backend >= 0.4.1 && < 0.5
|
, hasql-backend >= 0.4.1 && < 0.5
|
||||||
, hasql-postgres >= 0.10.4 && < 0.11
|
, hasql-postgres >= 0.10.4 && < 0.11
|
||||||
, warp >= 3.0.2, wai >= 3.0.1
|
|
||||||
, wai-extra, wai-cors
|
|
||||||
, wai-middleware-static >= 0.6.0
|
|
||||||
, HTTP, convertible, http-types
|
|
||||||
, case-insensitive
|
|
||||||
, scientific, time
|
|
||||||
, aeson >= 0.8, network >= 2.6
|
|
||||||
, aeson-pretty >= 0.7 && < 0.8
|
|
||||||
, bytestring, text, split, string-conversions
|
|
||||||
, stringsearch
|
|
||||||
, containers, unordered-containers
|
|
||||||
, optparse-applicative >= 0.11 && < 0.13
|
|
||||||
, regex-base, regex-tdfa
|
|
||||||
, Ranged-sets
|
|
||||||
, transformers, MissingH
|
|
||||||
, base64-string
|
|
||||||
, network-uri >= 2.6
|
|
||||||
, resource-pool
|
|
||||||
, blaze-builder
|
|
||||||
, vector
|
|
||||||
, mtl
|
|
||||||
, cassava
|
|
||||||
, jwt
|
, jwt
|
||||||
|
, optparse-applicative >= 0.11 && < 0.13
|
||||||
, parsec
|
, parsec
|
||||||
, errors
|
, postgrest
|
||||||
, bifunctors
|
, regex-tdfa
|
||||||
|
, scientific
|
||||||
|
, string-conversions
|
||||||
|
, text
|
||||||
|
, time
|
||||||
|
, transformers
|
||||||
|
, unordered-containers
|
||||||
|
, vector
|
||||||
|
, wai >= 3.0.1
|
||||||
|
, wai-cors
|
||||||
|
, wai-extra
|
||||||
|
, wai-middleware-static >= 0.6.0
|
||||||
|
, warp >= 3.0.2
|
||||||
|
, HTTP, http-types
|
||||||
|
, MissingH
|
||||||
|
, Ranged-sets
|
||||||
|
|
||||||
hs-source-dirs: src
|
hs-source-dirs: src
|
||||||
other-modules: Paths_postgrest
|
other-modules: Paths_postgrest
|
||||||
, PostgREST.App
|
, PostgREST.App
|
||||||
@@ -83,47 +83,34 @@ library
|
|||||||
|
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
default-extensions: OverloadedStrings, ScopedTypeVariables, QuasiQuotes
|
default-extensions: OverloadedStrings, ScopedTypeVariables, QuasiQuotes
|
||||||
build-depends: HTTP
|
build-depends: aeson
|
||||||
, MissingH
|
|
||||||
, Ranged-sets
|
|
||||||
, aeson
|
|
||||||
, base >=4.6 && <5
|
, base >=4.6 && <5
|
||||||
, base64-string
|
|
||||||
, bifunctors
|
|
||||||
, blaze-builder
|
|
||||||
, bytestring
|
, bytestring
|
||||||
, case-insensitive
|
, case-insensitive
|
||||||
, cassava
|
, cassava
|
||||||
, containers
|
, containers
|
||||||
, convertible
|
|
||||||
, errors
|
, errors
|
||||||
, hasql
|
, hasql
|
||||||
, hasql-backend
|
, hasql-backend
|
||||||
, hasql-postgres
|
, hasql-postgres
|
||||||
, http-types
|
, http-types
|
||||||
, jwt
|
, jwt
|
||||||
, mtl
|
|
||||||
, network
|
|
||||||
, network-uri
|
|
||||||
, optparse-applicative
|
, optparse-applicative
|
||||||
, parsec
|
, parsec
|
||||||
, regex-base
|
|
||||||
, regex-tdfa
|
, regex-tdfa
|
||||||
, resource-pool
|
|
||||||
, scientific
|
, scientific
|
||||||
, split
|
|
||||||
, string-conversions
|
, string-conversions
|
||||||
, stringsearch
|
|
||||||
, text
|
, text
|
||||||
, time
|
, time
|
||||||
, transformers
|
|
||||||
, unordered-containers
|
, unordered-containers
|
||||||
, vector
|
, vector
|
||||||
, wai
|
, wai
|
||||||
, wai-cors
|
, wai-cors
|
||||||
, wai-extra
|
, wai-extra
|
||||||
, wai-middleware-static
|
, wai-middleware-static
|
||||||
, warp
|
, HTTP
|
||||||
|
, MissingH
|
||||||
|
, Ranged-sets
|
||||||
|
|
||||||
Other-Modules: Paths_postgrest
|
Other-Modules: Paths_postgrest
|
||||||
Exposed-Modules: PostgREST.App
|
Exposed-Modules: PostgREST.App
|
||||||
@@ -171,36 +158,39 @@ Test-Suite spec
|
|||||||
, Spec
|
, Spec
|
||||||
, SpecHelper
|
, SpecHelper
|
||||||
, TestTypes
|
, TestTypes
|
||||||
Build-Depends: base, hspec == 2.2.*, QuickCheck
|
Build-Depends: aeson
|
||||||
, hspec-wai, hspec-wai-json
|
, base
|
||||||
, hasql, hasql-backend
|
|
||||||
, hasql-postgres
|
|
||||||
, warp, wai
|
|
||||||
, packdeps, hlint
|
|
||||||
, HTTP, convertible
|
|
||||||
, case-insensitive
|
|
||||||
, wai-extra, wai-cors, containers
|
|
||||||
, wai-middleware-static
|
|
||||||
, http-types, scientific, time
|
|
||||||
, bytestring, aeson, network
|
|
||||||
, text, optparse-applicative
|
|
||||||
, stringsearch
|
|
||||||
, unordered-containers
|
|
||||||
, regex-base
|
|
||||||
, string-conversions
|
|
||||||
, http-media, regex-tdfa
|
|
||||||
, Ranged-sets
|
|
||||||
, transformers, MissingH, split
|
|
||||||
, base64-string
|
, base64-string
|
||||||
, network-uri
|
, bytestring
|
||||||
, resource-pool
|
, case-insensitive
|
||||||
, blaze-builder
|
|
||||||
, vector
|
|
||||||
, mtl
|
|
||||||
, cassava
|
, cassava
|
||||||
, process
|
, containers
|
||||||
, heredoc
|
|
||||||
, jwt
|
|
||||||
, parsec
|
|
||||||
, errors
|
, errors
|
||||||
, bifunctors
|
, hasql
|
||||||
|
, hasql-backend
|
||||||
|
, hasql-postgres
|
||||||
|
, heredoc
|
||||||
|
, hlint
|
||||||
|
, hspec == 2.2.*
|
||||||
|
, hspec-wai
|
||||||
|
, hspec-wai-json
|
||||||
|
, http-types
|
||||||
|
, jwt
|
||||||
|
, optparse-applicative
|
||||||
|
, packdeps
|
||||||
|
, parsec
|
||||||
|
, process
|
||||||
|
, regex-tdfa
|
||||||
|
, scientific
|
||||||
|
, string-conversions
|
||||||
|
, text
|
||||||
|
, time
|
||||||
|
, unordered-containers
|
||||||
|
, vector
|
||||||
|
, wai
|
||||||
|
, wai-cors
|
||||||
|
, wai-extra
|
||||||
|
, wai-middleware-static
|
||||||
|
, HTTP
|
||||||
|
, MissingH
|
||||||
|
, Ranged-sets
|
||||||
|
|||||||
Reference in New Issue
Block a user