-
Notifications
You must be signed in to change notification settings - Fork 0
/
temporal-sdk-core.cabal
84 lines (78 loc) · 1.95 KB
/
temporal-sdk-core.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
cabal-version: 3.0
name: temporal-sdk-core
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: Ian Duncan
maintainer: [email protected]
-- copyright:
category: Concurrency
build-type: Custom
extra-doc-files: CHANGELOG.md
extra-source-files:
rust/Cargo.toml,
rust/Cargo.lock,
rust/src/*.rs,
rust/temporal_bridge.h
common warnings
ghc-options: -Wall
flag external_lib
description: Use external library (don't compile automatically)
default: False
custom-setup
setup-depends:
base >= 4.7 && < 5
, Cabal >= 3.0.0.0
, directory >= 1.3.6.0
, filepath >= 1.3.0.2
, unix
library
import: warnings
includes:
rust/temporal_bridge.h
include-dirs: rust
ghc-options: -g
exposed-modules:
Temporal.Core.Client.WorkflowService,
Temporal.Core.Client.TestService,
Temporal.Core.Client.OperatorService,
Temporal.Core.Client,
Temporal.Core.EphemeralServer,
Temporal.Core.Worker,
Temporal.Runtime
other-modules:
Temporal.Internal.FFI,
Temporal.Core.CTypes,
build-depends:
base >= 4.14 && < 5,
proto-lens,
temporal-api-protos,
bytestring,
mtl,
text,
aeson,
unordered-containers,
vector,
async,
unliftio,
lens-family,
uuid,
stm,
containers,
unix,
network-bsd
hs-source-dirs: src
default-language: Haskell2010
if(os(darwin))
frameworks: Security, CoreFoundation, SystemConfiguration
-- test-suite temporal-sdk-core-test
-- import: warnings
-- default-language: Haskell2010
-- -- other-modules:
-- -- other-extensions:
-- type: exitcode-stdio-1.0
-- hs-source-dirs: test
-- main-is: Main.hs
-- build-depends: temporal-sdk-core