This repository was archived by the owner on Jan 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontent-store.cabal
101 lines (87 loc) · 3.7 KB
/
content-store.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: content-store
version: 0.2.1
synopsis: Store and retrieve data from an on-disk store
description: This module provides a way to store and retrieve arbitrary
data from an on-disk store, similar to how a source
control system works but without the assumptions of such
a system.
homepage: https://github.com/weldr/content-store
category: System
author: Chris Lumens
maintainer: clumens@redhat.com
license: LGPL-2.1
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files: ChangeLog.md,
Makefile,
scripts/hpc-coveralls,
tests/*.hs,
tests/Data/*.hs,
tests/Data/ContentStore/*.hs
source-repository head
type: git
location: https://github.com/weldr/content-store
library
exposed-modules: Data.ContentStore,
Data.ContentStore.Config,
Data.ContentStore.Digest
build-depends: aeson >= 1.0.0.0 && < 1.4.0.0,
base >= 4.9 && < 5.0,
bytestring >= 0.10 && < 0.11,
cond >= 0.4.1.1 && < 0.5.0.0,
conduit >= 1.0.11 && < 1.4,
conduit-combinators >= 1.1.0 && < 1.3,
conduit-extra >= 1.1.0 && < 1.4,
cryptonite >= 0.22 && < 0.30,
directory >= 1.3.0.0 && < 1.4.0.0,
filepath >= 1.4.1.1 && < 1.5.0.0,
htoml >= 1.0.0.0 && < 1.1.0.0,
lzma-conduit >= 1.1.0.0 && < 1.3.0.0,
memory >= 0.14.3 && < 0.15.0,
monad-control >= 1.0.1.0 && < 1.1.0.0,
mtl >= 2.2.1 && < 2.3,
resourcet >= 1.1.9 && < 1.2,
temporary >= 1.2.0.4 && < 1.3.0.0,
text >= 1.2.2.0 && < 1.3,
transformers >= 0.5.2.0 && < 0.6.0.0,
transformers-base >= 0.4.4 && < 0.5.0,
unix >= 2.7.2.1 && < 2.8.0.0
default-language: Haskell2010
default-extensions: LambdaCase,
MultiWayIf,
OverloadedStrings,
RecordWildCards
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
-Wcompat
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: tests
other-modules: Data.ContentStore.DigestSpec,
Data.ContentStoreSpec
build-depends: base == 4.*,
bytestring >= 0.10 && < 0.11,
conduit >= 1.0.11 && < 1.4,
conduit-combinators >= 1.1.0 && < 1.3,
directory >= 1.3.0.0 && < 1.4.0.0,
filepath >= 1.4.1.1 && < 1.5.0.0,
hspec == 2.*,
memory >= 0.14.3 && < 0.15.0,
mtl >= 2.2.1 && < 2.3,
resourcet >= 1.1.9 && < 1.2,
temporary >= 1.2.0.4 && < 1.3.0.0,
content-store
default-language: Haskell2010
default-extensions: LambdaCase,
MultiWayIf,
OverloadedStrings,
RecordWildCards
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
-Wcompat