-
Notifications
You must be signed in to change notification settings - Fork 0
/
mnogo.cabal
67 lines (60 loc) · 2.22 KB
/
mnogo.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
Name: mnogo
Version: 0.0.0
Synopsis: MongoDB driver
Description: MongoDB driver
License: MIT
License-file: LICENSE
Author: Fedor Gogolev <[email protected]>
Maintainer: Fedor Gogolev <[email protected]>
Homepage: https://github.com/lambda-llama/mnogo
Bug-reports: https://github.com/lambda-llama/mnogo
Category: Database, Network
Stability: Alpha
Build-type: Simple
Cabal-version: >= 1.12
Tested-with: GHC == 7.6.*
Extra-Source-Files: include/*.h
Library
Hs-source-dirs: src
Include-dirs: include
Ghc-options: -Wall -fno-warn-orphans
Default-language: Haskell2010
Build-depends:
base >= 4.5.0 && <= 4.8
, bytestring == 0.9.* || == 0.10.*
, containers == 0.5.*
, unix == 2.6.*
, random == 1.0.*
, time == 1.4.*
, network == 2.4.*
, mtl == 2.1.*
, text == 0.11.*
, tagged == 0.7.*
, word24 == 1.0.*
, bresson == 0.0.*
, bitset == 1.4.*
, binary == 0.5.*
, vector == 0.10.*
, exceptions == 0.3.*
Exposed-modules:
Database.Mongodb
Database.Mongodb.Connection
Database.Mongodb.Protocol
Other-modules:
Database.Mongodb.Internal
Test-suite mnogo-tests
Main-is: Tests.hs
Hs-source-dirs: src, tests
Default-language: Haskell2010
Type: exitcode-stdio-1.0
Build-depends:
base >= 4.5.0 && <= 4.8
, bytestring == 0.9.* || == 0.10.*
, network == 2.4.*
, mtl == 2.1.*
, bresson == 0.0.*
, exceptions == 0.3.*
, tasty == 0.3.*
Source-repository head
Type: git
Location: https://github.com/lambda-llama/mnogo