-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrone.cabal
100 lines (95 loc) · 2.54 KB
/
drone.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 586025dbc8658a0f909cb5618f74f2015236f76e3117a1fb20cfe2a016248e3d
name: drone
version: 1.1.0
description: Please see the README on GitHub at <https://github.com/matsubara0507/drone-haskell#readme>
homepage: https://github.com/matsubara0507/drone-haskell#readme
bug-reports: https://github.com/matsubara0507/drone-haskell/issues
author: MATSUBARA Nobutada
maintainer: [email protected]
copyright: 2018 MATSUBARA Nobutada
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/matsubara0507/drone-haskell
library
exposed-modules:
Drone
Drone.Client
Drone.Client.Path
Drone.Endpoints
Drone.Endpoints.Build
Drone.Endpoints.Cron
Drone.Endpoints.Log
Drone.Endpoints.Node
Drone.Endpoints.Queue
Drone.Endpoints.Repo
Drone.Endpoints.Secret
Drone.Endpoints.Server
Drone.Endpoints.User
Drone.Endpoints.Yaml
Drone.Types
Drone.Types.Build
Drone.Types.Cron
Drone.Types.Log
Drone.Types.Node
Drone.Types.Registry
Drone.Types.Repo
Drone.Types.Secret
Drone.Types.Server
Drone.Types.User
other-modules:
Paths_drone
hs-source-dirs:
src
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
build-depends:
base >=4.7 && <5
, bytestring
, containers >=0.5.4
, extensible >=0.6
, formatting >=6.3.0
, microlens
, req >=1.0.0
, text
default-language: Haskell2010
test-suite drone-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Drone.Endpoint.BuildSpec
Drone.Endpoint.CronSpec
Drone.Endpoint.LogSpec
Drone.Endpoint.RepoSpec
Drone.Endpoint.UserSpec
Drone.Test.Client
Drone.Test.Fixture
Drone.Test.MockServer
Paths_drone
hs-source-dirs:
test
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
, base >=4.7 && <5
, bytestring
, containers >=0.5.4
, drone
, extensible >=0.6
, formatting >=6.3.0
, hspec
, microlens
, req >=2.0.0
, servant-server
, text
, warp
default-language: Haskell2010