-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailscale-manager.cabal
91 lines (86 loc) · 2.62 KB
/
tailscale-manager.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
cabal-version: 3.0
name: tailscale-manager
-- The package version.
-- See the Haskell package versioning policy (PVP) for standards
-- guiding when and how versions should be incremented.
-- https://pvp.haskell.org
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.2.0
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
license: Apache-2.0
license-file: LICENSE
author: Benjamin Staffin
maintainer: [email protected]
-- copyright:
category: System
build-type: Simple
extra-doc-files: CHANGELOG.md
-- Extra source files to be distributed with the package, such as examples, or a tutorial module.
-- extra-source-files:
common warnings
ghc-options: -Wall
common deps
default-language: Haskell2010
build-depends:
base ^>=4.18.2.1
, aeson ^>= 2.1.2
, aeson-iproute ^>= 0.3.0
, amazonka ^>= 2.0
, amazonka-core ^>= 2.0
, amazonka-ec2 ^>= 2.0
, bytestring ^>= 0.11.5
, conduit ^>= 1.3.5
, containers ^>= 0.6.7
, generic-lens ^>= 2.2.2
, hslogger ^>= 1.3.1
, network ^>= 3.1.4
, iproute ^>= 1.7.12
, lens ^>= 5.2.3
, monad-loops ^>= 0.4.3
, optparse-applicative ^>= 0.18.1
, prettyprinter ^>= 1.7.1
, process ^>= 1.6.19
, protolude ^>= 0.3.4
, raw-strings-qq ^>= 1.1
, text ^>= 2.0.2
executable tailscale-manager
import: warnings, deps
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: tailscale-manager
hs-source-dirs: app
library
import: warnings, deps
default-extensions:
ImportQualifiedPost
, OverloadedStrings
, QuasiQuotes
, StrictData
, TypeApplications
exposed-modules:
TailscaleManager
, TailscaleManager.Config
, TailscaleManager.Discovery.AWSManagedPrefixList
, TailscaleManager.Discovery.DNS
, TailscaleManager.Logging
hs-source-dirs: src
test-suite tailscale-manager-tests
import: warnings, deps
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
tailscale-manager
, HUnit ^>= 1.6.2
, HUnit-approx ^>= 1.1
, tasty ^>= 1.4.3
, tasty-ant-xml ^>= 1.1.9
, tasty-hunit ^>= 0.10.1