-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmssql.cabal
51 lines (49 loc) · 1.08 KB
/
mssql.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
name: mssql
version: 0.2
synopsis: Pure Haskell MSSQL database driver
homepage: https://github.com/denisenkom/hsmssql
license: MIT
license-file: LICENSE
author: Mikhail Denisenko
category: Database
build-type: Simple
cabal-version: >=1.10
library
build-depends:
base,
bytestring,
split,
containers,
encoding,
binary,
binary-strict,
HDBC,
MissingH,
network,
data-binary-ieee754,
time,
Decimal
exposed-modules:
Database.Mssql.Tds
Default-language: Haskell2010
test-suite mssql-tests
type: exitcode-stdio-1.0
main-is: TestMain.hs
other-modules: Database.Mssql.Tds
build-depends:
base,
HTF,
testpack,
bytestring,
split,
containers,
encoding,
binary,
binary-strict,
HDBC,
MissingH,
network,
data-binary-ieee754,
time,
Decimal
default-language: Haskell2010