This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tahoe-lafs-storage-server.cabal
167 lines (152 loc) · 3.53 KB
/
tahoe-lafs-storage-server.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
cabal-version: 3.0
name: tahoe-lafs-storage-server
version: 0.1.0.0
build-type: Simple
common common-opts
default-extensions:
GADTs
ImportQualifiedPost
InstanceSigs
LambdaCase
MultiWayIf
NamedFieldPuns
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StrictData
TupleSections
TypeApplications
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
, aeson
, async
, base
, binary
, bytestring
, containers
, deriving-aeson
, directory
, filepath
, foldl
, http-types
, primitive
, safe-exceptions
, text
, unordered-containers
, vector
-- Codecs
-- Parallelism
-- Mutability
-- Binary
-- Containers
-- Utilities
-- the actual app
default-language: Haskell2010
synopsis: A Tahoe-LAFS Storage Server
description:
This package implements a storage server for Tahoe-LAFS.
It implements the recently proposed "Great Black Swamp"
protocol and not the original Foolscap-based protocol.
homepage:
https://github.com/LeastAuthority/tahoe-lafs-storage-server#readme
license: BSD3
license-file: LICENSE
author: Least Authority TFA GmbH
maintainer: jean-paul@leastauthority.com
copyright: BSD3
category:
Cryptography
, Distributed Computing
, Filesystem
, Network
, Network APIs
, Security
, Service
, Storage
, Web
extra-source-files: README.rst
library
import: common-opts
hs-source-dirs: src
exposed-modules:
TahoeLAFS.Storage.API
TahoeLAFS.Storage.APIDocs
TahoeLAFS.Storage.Backend
TahoeLAFS.Storage.Backend.Filesystem
TahoeLAFS.Storage.Backend.Memory
TahoeLAFS.Storage.Backend.Null
TahoeLAFS.Storage.Client
TahoeLAFS.Storage.Server
other-modules: TahoeLAFS.Internal.ServantUtil
default-language: Haskell2010
build-depends:
, base >=4.7 && <5
, base64-bytestring
, cborg
, cborg-json
, http-api-data
, http-media
, scientific
, serialise
, servant-client
, servant-docs
, servant-server
, statvfs
, utf8-string
, wai
, warp
, warp-tls
-- executable gbs-generate-apidocs
-- hs-source-dirs: generate-apidocs
-- main-is: Main.hs
-- default-language: Haskell2010
-- build-depends: base
-- , servant-docs
-- , pandoc
-- , data-default
-- , blaze-html
-- , tahoe-lafs-storage-server
-- , text
executable tahoe-lafs-storage-server
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
build-depends:
, base
, optparse-applicative
, tahoe-lafs-storage-server
, warp
executable gbs-generate-clients
hs-source-dirs: generate-clients
main-is: Main.hs
default-language: Haskell2010
build-depends:
, base
, filepath
, servant-js
, tahoe-lafs-storage-server
test-suite http-tests
import: common-opts
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
HTTPSpec
Lib
MiscSpec
SemanticSpec
Spec
default-language: Haskell2010
ghc-options: -Wall
build-depends:
, base
, base32string
, hspec
, hspec-expectations
, hspec-wai
, QuickCheck
, quickcheck-instances
, tahoe-lafs-storage-server
, temporary
, vector
, wai-extra