-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpg-extras.cabal
81 lines (75 loc) · 2.74 KB
/
pg-extras.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
cabal-version: 2.4
-- Initial package description 'pg-extras.cabal' generated by
-- 'cabal init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: pg-extras
version: 0.0.1
synopsis: PostgreSQL database performance insights.
description:
Haskell port of Heroku PG Extras. The goal of this project is to provide a powerful insights into PostgreSQL database for Ruby on Rails apps that are not using the default Heroku PostgreSQL plugin.
license: MIT
license-file: LICENSE
author: Paweł Urbanek
maintainer: Paweł Urbanek <[email protected]>
copyright:
(c) 2020 Paweł Urbanek
category: Database
build-type: Simple
extra-source-files:
CHANGES.md
tested-with:
GHC ==8.0.2
|| ==8.2.2
|| ==8.4.4
|| ==8.6.5
|| ==8.8.4
|| ==8.10.2
source-repository head
type: git
location: http://github.com/pawurb/haskell-pg-extras
library
ghc-options: -Wall -fno-warn-name-shadowing
hs-source-dirs: src
exposed-modules: PGExtras
other-modules:
PGExtras.Queries.AllLocks
PGExtras.Queries.Bloat
PGExtras.Queries.Blocking
PGExtras.Queries.CacheHit
PGExtras.Queries.Calls
PGExtras.Queries.Extensions
PGExtras.Queries.IndexCacheHit
PGExtras.Queries.IndexSize
PGExtras.Queries.IndexUsage
PGExtras.Queries.KillAll
PGExtras.Queries.Locks
PGExtras.Queries.LongRunningQueries
PGExtras.Queries.Mandelbrot
PGExtras.Queries.RecordsRank
PGExtras.Queries.SeqScans
PGExtras.Queries.TableCacheHit
PGExtras.Queries.TableIndexesSize
PGExtras.Queries.TableSize
PGExtras.Queries.TotalIndexSize
PGExtras.Queries.TotalTableSize
PGExtras.Queries.UnusedIndexes
PGExtras.Queries.VacuumStats
PGExtras.Helpers
build-depends:
base >=4.6.0.0 && <4.15
, postgresql-simple >= 0.6.3 && < 0.7
, text >=1.2.3.0 && <1.3
, time >=1.4.0.1 && <1.12
, bytestring >= 0.10.10 && < 0.11
, raw-strings-qq >= 1.1 && < 1.2
default-language: Haskell2010
test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
pg-extras
, base >=4.6.0.0 && <4.15
, text >= 1.2.4 && < 1.3
, HUnit >= 1.6.1 && < 1.7