-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblobstore.cabal
45 lines (32 loc) · 1.29 KB
/
blobstore.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
Name: blobstore
Version: 0.1.0
Synopsis: Persistent storage for blobs of data.
Description: A quasi-functional storage for blobs of data.
.
Binary data is added, and may be retrieved but not
modified nor deleted.
License: BSD3
License-file: LICENSE
Author: Antoine Latter
Maintainer: [email protected]
Copyright: 2011 Antoine Latter
2008-2009 Duncan Coutts
Category: Database
Build-type: Simple
-- Extra-source-files:
Cabal-version: >=1.8
Library
Exposed-modules: Database.BlobStorage
Build-depends: base == 4.*, directory == 1.1.*, filepath >= 1.2 && < 1.4,
binary == 0.5.*, pureMD5 == 2.1.*, bytestring == 0.9.*
Hs-source-dirs: src
Test-Suite tests
Type: exitcode-stdio-1.0
Main-is: Main.hs
Hs-source-dirs: test
Build-depends: base == 4.*, blobstore, HUnit == 1.2.*, bytestring == 0.9.*,
temporary == 1.1.*, test-framework == 0.4.*,
test-framework-hunit == 0.2.*
Source-repository head
type: git
location: http://github.com/aslatter/blobstore.git