postgres-wire/postgres-wire.cabal

85 lines
2.8 KiB
Plaintext
Raw Normal View History

2017-01-02 03:48:20 +03:00
name: postgres-wire
version: 0.1.0.0
synopsis: A pure Haskell implementation of Postgres protocol v3.0
description: Please see README.md
homepage: https://github.com/postgres-haskell/postgres-wire#readme
license: MIT
license-file: LICENSE
author: Vyacheslav Hashov
maintainer: vyacheslavhashov@gmail.com
copyright: 2017 Vyacheslav Hashov
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
2017-01-28 00:50:38 +03:00
exposed-modules: Database.PostgreSQL.Driver
, Database.PostgreSQL.Driver.Connection
, Database.PostgreSQL.Driver.Settings
, Database.PostgreSQL.Driver.StatementStorage
, Database.PostgreSQL.Driver.Types
2017-01-07 14:30:34 +03:00
, Database.PostgreSQL.Protocol.Types
2017-01-13 15:40:12 +03:00
, Database.PostgreSQL.Protocol.Encoders
, Database.PostgreSQL.Protocol.Decoders
2017-01-02 03:48:20 +03:00
build-depends: base >= 4.7 && < 5
2017-01-07 14:30:34 +03:00
, bytestring
, socket
, socket-unix
, vector
, binary
2017-01-13 19:38:51 +03:00
, time
2017-01-16 20:58:12 +03:00
, hashable
, hashtables
2017-01-17 20:47:16 +03:00
, unagi-chan
2017-01-21 20:38:05 +03:00
, unordered-containers
2017-01-26 23:15:13 +03:00
, unix
2017-01-24 20:56:47 +03:00
, postgresql-binary
2017-01-27 00:22:34 +03:00
, tls
2017-01-27 21:18:43 +03:00
, cryptonite
2017-01-02 03:48:20 +03:00
default-language: Haskell2010
2017-01-21 20:38:05 +03:00
default-extensions:
OverloadedStrings
2017-01-28 00:50:38 +03:00
OverloadedLists
2017-01-21 20:38:05 +03:00
GeneralizedNewtypeDeriving
2017-01-02 03:48:20 +03:00
test-suite postgres-wire-test-connection
type: exitcode-stdio-1.0
hs-source-dirs: tests_connection
main-is: test.hs
build-depends: base
, postgres-wire
, tasty
, tasty-hunit
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
default-extensions:
OverloadedStrings
OverloadedLists
GeneralizedNewtypeDeriving
2017-01-02 03:48:20 +03:00
test-suite postgres-wire-test
type: exitcode-stdio-1.0
2017-01-28 01:31:06 +03:00
hs-source-dirs: tests
main-is: test.hs
2017-01-29 01:48:25 +03:00
other-modules: Connection
2017-01-29 03:48:14 +03:00
, Driver
2017-01-29 01:48:25 +03:00
, Protocol
2017-01-02 03:48:20 +03:00
build-depends: base
, postgres-wire
2017-01-29 03:48:14 +03:00
, bytestring
2017-01-28 01:31:06 +03:00
, tasty
, tasty-hunit
2017-01-02 03:48:20 +03:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
2017-01-28 01:31:06 +03:00
default-extensions:
OverloadedStrings
OverloadedLists
GeneralizedNewtypeDeriving
2017-01-02 03:48:20 +03:00
source-repository head
type: git
location: https://github.com/postgres-haskell/postgres-wire