-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.yaml
More file actions
193 lines (183 loc) · 4.01 KB
/
package.yaml
File metadata and controls
193 lines (183 loc) · 4.01 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
name: morloc
version: 0.84.0
homepage: https://github.com/morloc-project/morloc
synopsis: A multi-lingual, typed, workflow language
description: |
Morloc is a typed, multi-lingual workflow language that composes functions
across Python, C++, R, and other languages under a unified type system.
The compiler generates interprocess communication code, serialization
logic, and a dispatch binary from a single morloc source file.
See the GitHub README <https://github.com/morloc-project/morloc#readme>
for full documentation.
category: Language, Compiler, Code Generation
tested-with: GHC == 9.6.6
license: Apache-2.0
license-file: LICENSE
author: "Zebulun Arendsee"
maintainer: "z@morloc.io"
github: "morloc-project/morloc"
bug-reports: https://github.com/morloc-project/morloc/issues
copyright: "2026 Zebulun Arendsee"
extra-source-files:
- README.md
- ChangeLog.md
# libraries
- data/lang/cpp/pool.cpp
# universal c header
- data/morloc/morloc.h
# shared language config
- data/lang/languages.yaml
# per-language files
- data/lang/c/lang.yaml
- data/lang/cpp/lang.yaml
- data/lang/cpp/cppmorloc.hpp
- data/lang/cpp/cppmorloc.cpp
- data/lang/cpp/morloc_pch.hpp
- data/lang/cpp/pool.cpp
- data/lang/cpp/init.sh
- data/lang/py/lang.yaml
- data/lang/py/pymorloc.c
- data/lang/py/setup.py
- data/lang/py/Makefile
- data/lang/py/pool.py
- data/lang/py/init.sh
- data/lang/r/lang.yaml
- data/lang/r/rmorloc.c
- data/lang/r/pool.R
- data/lang/r/init.sh
- data/lang/julia/juliabridge.c
- data/lang/julia/MorlocRuntime.jl
- data/lang/julia/lang.yaml
- data/lang/julia/pool.jl
- data/lang/julia/init.sh
default-extensions:
- TypeOperators
dependencies:
- base
- aeson
- binary
- array
- bytestring
- containers
- directory
- directory-tree
- extra
- filepath
- file-embed
- haskell-src-meta
- http-conduit
- http-types
- mtl
- parsec
- partial-order
- pretty-simple
- prettyprinter
- process
- raw-strings-qq
- safe
- scientific
- template-haskell
- text
- time
- unordered-containers
- vector
- yaml
- zip-archive
ghc-options:
- -Wall
- -Wcompat
- -fwarn-unused-binds
- -fwarn-unused-imports
- -fwarn-tabs
- -fwarn-incomplete-uni-patterns
- -fwarn-incomplete-record-updates
- -fwarn-redundant-constraints
- -fno-warn-missing-signatures
- -fno-warn-unused-do-bind
- -fno-warn-orphans
- -haddock
library:
source-dirs: library
build-tools:
- happy
executables:
morloc:
main: Main.hs
source-dirs: executable
ghc-options:
- -Wall
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -O2
- -haddock
dependencies:
- morloc
- base
- optparse-applicative
- temporary
- text
morloc-codegen-generic:
main: Main.hs
source-dirs: exe/morloc-codegen-generic
ghc-options:
- -Wall
- -O2
dependencies:
- morloc
- base
- aeson
- binary
- bytestring
- text
- yaml
tests:
morloc-test:
main: Main.hs
source-dirs: test-suite
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- morloc
- base
- QuickCheck
- tasty
- tasty-golden
- tasty-hunit
- tasty-quickcheck
morloc-integration-test:
main: Main.hs
source-dirs: test-suite/integration
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base
- async
- directory
- filepath
- process
- tasty
- tasty-hunit
- temporary
- text
- time
- unix
benchmarks:
morloc-bench:
main: Bench.hs
source-dirs: bench
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -O2
dependencies:
- morloc
- base
- tasty-bench
- text
- filepath