-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathTCache.cabal
86 lines (83 loc) · 2.06 KB
/
TCache.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
name: TCache
version: 0.13.2
cabal-version: >= 1.10
synopsis: A Transactional cache with user-defined persistence
description: Please see the README on GitHub at <https://github.com/agocorona/TCache#readme>
category: Data, Database
homepage: https://github.com/agocorona/TCache#readme
bug-reports: https://github.com/agocorona/TCache/issues
author: Alberto Gómez Corona
maintainer: [email protected]
copyright: 2019 Alberto Gómez Corona
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
ChangeLog.md
README.md
demos/basicSample.hs
demos/caching.hs
demos/DBRef.hs
demos/DynamicSample.hs
demos/indexQuery.hs
demos/indexText.hs
demos/memoization.hs
demos/pr.hs
demos/pushpop.hs
demos/testnewdbref.hs
demos/triggerRelational.lhs
demos/weakTest.hs
Data/Persistent/IDynamic.hs
source-repository head
type: git
location: https://github.com/agocorona/TCache
library
exposed-modules:
Data.TCache
Data.TCache.DefaultPersistence
Data.TCache.Defs
Data.TCache.IResource
Data.TCache.IndexQuery
Data.TCache.IndexText
Data.TCache.Memoization
Data.TCache.Triggers
Data.Persistent.Collection
Data.Persistent.IDynamic
other-modules:
Paths_TCache
hs-source-dirs:
./.
ghc-options: -Wall -Wcompat -Widentities
build-depends:
RefSerialize
, base >=4.7 && <5
, bytestring
, containers >=0.1.0.1
, directory >=1.0
, hashtables
, mtl
, old-time >=1.0
, stm
, text
default-language: Haskell2010
test-suite caching
type: exitcode-stdio-1.0
main-is: caching.hs
other-modules:
Paths_TCache
hs-source-dirs:
demos
ghc-options: -Wall -Wcompat -Widentities -threaded -rtsopts -with-rtsopts=-N
build-depends:
RefSerialize
, TCache
, base >=4.7 && <5
, bytestring
, containers >=0.1.0.1
, directory >=1.0
, hashtables
, mtl
, old-time >=1.0
, stm
, text
default-language: Haskell2010