2018-08-02 21:39:08 +03:00
|
|
|
-- Initial ebook-manager.cabal generated by cabal init. For further
|
|
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: ebook-manager
|
|
|
|
version: 0.1.0.0
|
|
|
|
-- synopsis:
|
|
|
|
-- description:
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Mats Rauhala
|
|
|
|
maintainer: mats.rauhala@iki.fi
|
|
|
|
-- copyright:
|
|
|
|
category: Web
|
|
|
|
build-type: Simple
|
|
|
|
extra-source-files: ChangeLog.md
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
executable ebook-manager
|
|
|
|
main-is: Main.hs
|
|
|
|
other-modules: Devel.Main
|
2018-08-02 22:11:11 +03:00
|
|
|
, API
|
2018-08-03 23:36:38 +03:00
|
|
|
, API.Users
|
2018-08-02 23:07:05 +03:00
|
|
|
, Configuration
|
2018-08-02 23:59:08 +03:00
|
|
|
, Database
|
|
|
|
, Database.Schema
|
2018-08-03 23:36:38 +03:00
|
|
|
, Database.User
|
2018-08-02 23:07:05 +03:00
|
|
|
, Server
|
2018-08-04 23:53:40 +03:00
|
|
|
, Server.Auth
|
2018-08-02 22:32:23 +03:00
|
|
|
, Types
|
2018-08-02 21:39:08 +03:00
|
|
|
-- other-extensions:
|
|
|
|
build-depends: base >=4.10 && <4.11
|
|
|
|
, servant
|
2018-08-02 22:32:23 +03:00
|
|
|
, monad-logger
|
2018-08-02 21:39:08 +03:00
|
|
|
, servant-server
|
|
|
|
, servant-docs
|
|
|
|
, classy-prelude
|
|
|
|
, cryptonite
|
|
|
|
, x509
|
|
|
|
, x509-store
|
|
|
|
, asn1-data
|
|
|
|
, asn1-types
|
|
|
|
, pem
|
|
|
|
, mtl
|
|
|
|
, transformers
|
|
|
|
, bytestring
|
|
|
|
, text
|
|
|
|
, pandoc
|
2018-08-02 23:33:47 +03:00
|
|
|
, pandoc-types
|
2018-08-02 21:39:08 +03:00
|
|
|
, foreign-store
|
|
|
|
, warp
|
|
|
|
, wai
|
|
|
|
, dhall
|
|
|
|
, lucid
|
|
|
|
, servant-lucid
|
2018-08-02 23:07:05 +03:00
|
|
|
, lens
|
|
|
|
, generic-lens
|
2018-08-02 23:33:47 +03:00
|
|
|
, resource-pool
|
|
|
|
, selda
|
|
|
|
, selda-postgresql
|
|
|
|
, process
|
2018-08-03 23:36:38 +03:00
|
|
|
, aeson
|
|
|
|
, http-api-data
|
2018-08-04 23:43:26 +03:00
|
|
|
, servant-auth
|
|
|
|
, servant-auth-server
|
|
|
|
, jose
|
2018-08-02 21:39:08 +03:00
|
|
|
hs-source-dirs: src
|
2018-08-03 23:36:38 +03:00
|
|
|
default-extensions: DeriveGeneric
|
|
|
|
, NoImplicitPrelude
|
|
|
|
, OverloadedStrings
|
|
|
|
, RecordWildCards
|
2018-08-02 21:39:08 +03:00
|
|
|
default-language: Haskell2010
|