-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcasper.cabal
57 lines (54 loc) · 1.45 KB
/
casper.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
cabal-version: >=1.10
name: casper
version: 0.1.0.0
license: BSD3
license-file: LICENSE
copyright: 2020 Cross Compass Ltd.
maintainer: [email protected]
author: Viktor Kronvall, Jonas Carpay
homepage: https://github.com/xc-jp/casper#readme
synopsis: Simple content-addressable store
category: Web
build-type: Simple
extra-source-files: README.md
library
exposed-modules:
Casper
Content
Internal
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
build-depends:
aeson
, base >=4.7 && <5
, base16-bytestring >=1.0.0.0
, base64-bytestring >=1.1.0.0
, bytestring
, containers
, cryptonite
, directory
, exceptions
, filepath
, memory
, mtl
, process
, stm
test-suite casper-spec
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
default-language: Haskell2010
build-depends:
base >=4.7 && <5
, casper
, containers
, directory >=1.3.6.0 && <1.4
, filepath >=1.4.2.1 && <1.5
, mtl >=2.2.2 && <2.3
, QuickCheck >=2.14 && <2.15
, stm
, tasty >=1.3.1 && <1.4
, tasty-hspec >=1.1.5.1 && <1.2
, tasty-quickcheck >=0.10.1.1 && <0.11
, temporary >=1.3 && <1.4