-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.yaml
52 lines (48 loc) · 995 Bytes
/
package.yaml
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
name: odpic-raw
version: 0.5.0
synopsis: Oracle Database Bindings
description: A low-level client library for the Oracle database, implemented as bindings to the C ODPI API.
maintainer: Daniel YU <leptonyu@gmail.com>
license: MIT
github: leptonyu/odpic-raw
category: Database, Oracle, ODPI-C, FFI, Raw
extra-source-files:
- README.md
- include/LICENSE
- include/*.h
- include/*.c
dependencies:
- base >= 4.9 && < 5
- bytestring
- resourcet
- conduit
- time
- scientific
- binary
ghc-options: -Wall
library:
source-dirs: src
exposed-modules:
- Database.Dpi
- Database.Dpi.Field
- Database.Dpi.Sql
other-modules:
- Database.Dpi.Internal
- Database.Dpi.Prelude
- Database.Dpi.Util
include-dirs:
- include
c-sources:
- include/*.c
build-tools: c2hs
tests:
odpic-raw-test:
source-dirs: test
main: Spec.hs
build-tools: c2hs
dependencies:
- odpic-raw
- resourcet
- conduit
- bytestring
- hspec