forked from epi-project/brane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
73 lines (53 loc) · 1.61 KB
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
### OVERVIEW ###
"overview",
### BINARIES ###
# These crates directly relate to the CTL tool
"brane-ctl",
# These crates directly relate to the CLI tool
"brane-cli",
"brane-oas",
# These crates directly relate to the `branec` tool
"brane-cc",
### SERVICES ###
# These crates implement services for central nodes
"brane-drv",
"brane-plr",
"brane-api",
# These crates implement services for worker nodes
"brane-job",
"brane-reg",
"brane-let",
# These crates implement services that occur on any type of node
"brane-prx",
### C-INTERFACES ###
# These crates provide C-compatible interfaces to other libraries
"brane-cli-c",
### LIBRARIES ###
# These crates provide the full BraneScript/Bakery/... stack
"brane-tsk",
"brane-exe",
"brane-ast",
"brane-dsl",
# These crates provide specifications / general implementations
"brane-cfg",
"brane-shr",
"specifications",
# # TODO
# "brane-log",
]
[workspace.package]
version = "3.0.0"
edition = "2021"
authors = [ "Onno Valkering", "Tim Müller" ]
description = "The Brane Framework is a workflow execution system that is capable of dealing with sensitive dataset. Created for the [EPI project](https://enablingpersonalizedinterventions.nl)."
repository = "https://github.com/epi-project/brane"
documentation = "https://wiki.enablingpersonalizedinterventions.nl"
[package]
name = "brane-meta"
version.workspace = true
edition = "2021"
[lints.clippy]
result_large_err = { level = "allow", priority = 1 }