Compare commits

...
1 Commits
Author SHA1 Message Date
Joe Nelson e909ef3e62 Mention all modules in .cabal file
per #129
2015-02-04 14:50:33 -08:00
+17 -5
View File
@@ -2,7 +2,7 @@ name: postgrest
description: Reads the schema of a PostgreSQL database and creates RESTful routes description: Reads the schema of a PostgreSQL database and creates RESTful routes
for the tables and views, supporting all HTTP verbs that security for the tables and views, supporting all HTTP verbs that security
permits. permits.
version: 0.2.5.1 version: 0.2.5.2
synopsis: REST API for any Postgres database synopsis: REST API for any Postgres database
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
@@ -46,10 +46,12 @@ executable postgrest
Other-Modules: App Other-Modules: App
, Auth , Auth
, Config , Config
, PgStructure , Error
, PgQuery
, RangeQuery
, Middleware , Middleware
, PgQuery
, PgStructure
, RangeQuery
, Types
hs-source-dirs: src hs-source-dirs: src
Test-Suite spec Test-Suite spec
@@ -60,7 +62,17 @@ Test-Suite spec
Hs-Source-Dirs: test, src Hs-Source-Dirs: test, src
ghc-options: -Wall -W -Werror ghc-options: -Wall -W -Werror
Main-Is: Main.hs Main-Is: Main.hs
Other-Modules: App, Auth, Config, Spec, SpecHelper Other-Modules: App
, Auth
, Config
, Error
, Middleware
, PgQuery
, PgStructure
, RangeQuery
, Types
, Spec
, SpecHelper
Build-Depends: base, hspec >= 2.1.2, QuickCheck Build-Depends: base, hspec >= 2.1.2, QuickCheck
, hspec-wai >= 0.5.0, hspec-wai-json , hspec-wai >= 0.5.0, hspec-wai-json
, hasql == 0.7.*, hasql-backend , hasql == 0.7.*, hasql-backend