-
Notifications
You must be signed in to change notification settings - Fork 0
/
hubic-auth-swift.cabal
63 lines (58 loc) · 2.06 KB
/
hubic-auth-swift.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
name: hubic-auth-swift
version: 0.1.0
synopsis: Swift v1 authentication for hubiC
description:
Enable OpenStack Swift clients to access files from a hubiC account
using the standard Swift v1 authentication method.
homepage: https://github.com/redneb/hubic-auth-swift
license: AGPL-3
license-file: LICENSE
author: Marios Titas <rednebΑΤgmxDΟΤcom>
maintainer: Marios Titas <rednebΑΤgmxDΟΤcom>
category: Network
build-type: Simple
cabal-version: >=1.10
extra-source-files:
README.md
html/*.html
source-repository head
type: git
location: https://github.com/redneb/hubic-auth-swift.git
flag static
description: Build static binary
default: False
library
exposed-modules: HubicAuthServer
other-modules: Hubic, Paths_hubic_auth_swift
build-depends: base >=4.5 && <5
, time >=1.5
, bytestring >=0.9
, base64-bytestring >=1
, text >=1
, stm >=2
, random >=1
, transformers >=0.3
, unordered-containers >=0.2
, scotty >=0.10
, warp >=3
, wai >=3
, http-client >=0.5.3
, http-client-tls >=0.2
, http-types >=0.8
, aeson >=0.9
, hastache >=0.6
, file-embed
, data-default-class
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable hubic-auth-swift
main-is: Main.hs
build-depends: base >=4.5 && <5
, hubic-auth-swift
, text
, data-default-class
default-language: Haskell2010
ghc-options: -Wall
if flag(static)
ld-options: -static -pthread