This repository was archived by the owner on May 23, 2019. It is now read-only.
forked from selectel/mongoDB-haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongoDB.cabal
73 lines (67 loc) · 2.52 KB
/
mongoDB.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
Name: mongoDB
Version: 2.0.4
Synopsis: Driver (client) for MongoDB, a free, scalable, fast, document
DBMS
Description: This package lets you connect to MongoDB servers and
update/query their data. Please see the example in
Database.MongoDB and the tutorial from the homepage. For
information about MongoDB itself, see www.mongodb.org.
Category: Database
Homepage: https://github.com/mongodb-haskell/mongodb
Bug-reports: https://github.com/mongodb-haskell/mongodb/issues
Author: Tony Hannan
Maintainer: Fedor Gogolev <[email protected]>
Copyright: Copyright (c) 2010-2012 10gen Inc.
License: OtherLicense
License-file: LICENSE
Cabal-version: >= 1.10
Build-type: Simple
Stability: alpha
Library
GHC-options: -Wall
GHC-prof-options: -auto-all
default-language: Haskell2010
Build-depends: array -any
, base <5
, binary -any
, bson >= 0.3 && < 0.4
, text
, bytestring -any
, containers -any
, mtl >= 2
, cryptohash -any
, network -any
, parsec -any
, random -any
, random-shuffle -any
, monad-control >= 0.3.1
, lifted-base >= 0.1.0.3
, transformers-base >= 0.4.1
, hashtables >= 1.1.2.0
Exposed-modules: Database.MongoDB
Database.MongoDB.Admin
Database.MongoDB.Connection
Database.MongoDB.Internal.Connection
Database.MongoDB.Internal.Protocol
Database.MongoDB.Internal.Util
Database.MongoDB.Query
System.IO.Pipeline
Source-repository head
Type: git
Location: https://github.com/mongodb-haskell/mongodb
test-suite test
hs-source-dirs: test
main-is: Spec.hs
ghc-options: -Wall
type: exitcode-stdio-1.0
build-depends: mongoDB
, base
, mtl
, hspec >= 2
-- Keep supporting the old-locale and time < 1.5 packages for
-- now. It's too difficult to support old versions of GHC and
-- the new version of time.
, old-locale
, time
default-language: Haskell2010
default-extensions: OverloadedStrings