Skip to content

Commit c79237e

Browse files
Backbone
1 parent bb6c284 commit c79237e

File tree

5 files changed

+59
-0
lines changed

5 files changed

+59
-0
lines changed

Setup.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import Distribution.Simple
2+
main = defaultMain

postgres-wire-highlevel.cabal

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: postgres-wire-highlevel
2+
version: 0.1.0.0
3+
homepage: https://github.com/postgres-haskell/postgres-wire-highlevel#readme
4+
license: MIT
5+
license-file: LICENSE
6+
author: Vyacheslav Hashov
7+
maintainer: vyacheslavhashov@gmail.com
8+
copyright: 2017 Vyacheslav Hashov
9+
category: Web
10+
build-type: Simple
11+
extra-source-files: README.md
12+
cabal-version: >=1.10
13+
14+
library
15+
hs-source-dirs: src
16+
exposed-modules: Database.PostgreSQL.Session
17+
build-depends: base >= 4.7 && < 5
18+
, bytestring
19+
, vector
20+
default-language: Haskell2010
21+
default-extensions:
22+
BangPatterns
23+
OverloadedStrings
24+
GeneralizedNewtypeDeriving
25+
26+
27+
test-suite postgres-wire-highlevel-test
28+
type: exitcode-stdio-1.0
29+
hs-source-dirs: test
30+
main-is: Spec.hs
31+
build-depends: base
32+
, postgres-wire-highlevel
33+
ghc-options: -threaded -rtsopts -with-rtsopts=-N
34+
default-language: Haskell2010
35+
36+
source-repository head
37+
type: git
38+
location: https://github.com/postgres-haskell/postgres-wire-highlevel
File renamed without changes.

stack.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This file was automatically generated by 'stack init'
2+
#
3+
resolver: lts-7.14
4+
compiler: ghc-8.0.2
5+
compiler-check: match-exact
6+
7+
packages:
8+
- '.'
9+
# Dependency packages to be pulled from upstream that are not in the resolver
10+
# (e.g., acme-missiles-0.3)
11+
extra-deps:
12+
13+
# Override default flag values for local packages and extra-deps
14+
flags: {}
15+
16+
# Extra package databases containing global packages
17+
extra-package-dbs: []

test/Spec.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
main :: IO ()
2+
main = putStrLn "Test suite not yet implemented"

0 commit comments

Comments
 (0)