-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
166 lines (157 loc) · 7.29 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
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
[workspace]
members = [
"plugins/arithmetic/crates/model",
"plugins/arithmetic/crates/plugin",
"plugins/base/crates/model",
"plugins/base/crates/plugin",
"plugins/binary/crates/model",
"plugins/binary/crates/plugin",
"plugins/color/crates/model",
"plugins/color/crates/plugin",
"plugins/comparison/crates/model",
"plugins/comparison/crates/plugin",
"plugins/config/crates/model",
"plugins/config/crates/plugin",
"plugins/connector/crates/model",
"plugins/connector/crates/plugin",
"plugins/date-time/crates/model",
"plugins/date-time/crates/plugin",
"plugins/file/crates/model",
"plugins/file/crates/plugin",
"plugins/flow/crates/model",
"plugins/flow/crates/plugin",
"plugins/git/crates/model",
"plugins/git/crates/plugin",
"plugins/graphql-client",
"plugins/graphql-schema-visualization",
"plugins/http/crates/model",
"plugins/http/crates/plugin",
# "plugins/i18n/crates/model",
# "plugins/i18n/crates/plugin",
"plugins/json/crates/model",
"plugins/json/crates/plugin",
"plugins/logical/crates/model",
"plugins/logical/crates/plugin",
"plugins/metadata/crates/model",
"plugins/metadata/crates/plugin",
"plugins/numeric/crates/model",
"plugins/numeric/crates/plugin",
"plugins/random/crates/model",
"plugins/random/crates/plugin",
"plugins/result/crates/model",
"plugins/result/crates/plugin",
"plugins/state/crates/model",
"plugins/state/crates/plugin",
"plugins/string/crates/model",
"plugins/string/crates/plugin",
"plugins/system-environment/crates/model",
"plugins/system-environment/crates/plugin",
"plugins/taxonomy/crates/model",
"plugins/taxonomy/crates/plugin",
"plugins/trigger/crates/model",
"plugins/trigger/crates/plugin",
"plugins/value/crates/model",
"plugins/value/crates/plugin",
"deployment"
]
resolver = "2"
[workspace.package]
version = "0.10.0"
authors = ["Andreas Schaeffer <hanack@nooblounge.net>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/reactive-graph/plugins-core"
homepage = "https://www.reactive-graph.io/"
keywords = ["graph", "reactive", "control-flow", "inexor"]
[workspace.dependencies]
angle = "0.5"
angular-units = "0.2.4"
async-std = "1.12"
async-trait = "0.1"
base64 = "0.22"
chrono = "0.4"
crossbeam = "0.8"
dashmap = { version = "6.0", features = ["serde"] }
data-url = "0.3"
default-test = "0.1"
fluent-bundle = "0.15"
fluent-templates = "0.10"
git2 = "0.19"
http = "0.2"
humantime = "2.1"
infer = "0.16"
json5 = "0.4"
lazy_static = "1.4"
license = "3.0"
log = { version = "0.4", features = ["std", "serde"] }
log4rs = { version = "1.2", features = ["console_appender", "file_appender", "toml_format"] }
matchit = "0.8"
mime_guess = "2.0"
notify = { version = "6.1", features = ["serde", "crossbeam-channel"] }
num-traits = "0.2"
paste = "1.0"
prisma = "0.1.1"
quote = "1.0"
query_interface = "0.3"
rand = "0.8"
rand_chacha = "0.3"
random-string = "1.0"
rust-embed = { version = "8.0", features = ["debug-embed", "compression"] }
rustc_version = "0.4"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
springtime = "1.0"
springtime-di = { version = "1.0", default-features = false, features = ["threadsafe", "derive"] }
springtime-di-derive = "0.3"
shellexpand = "3.0"
strum = { version = "0.26", features = ["derive"] }
strum_macros = "0.26"
tera = "1"
thiserror = "1.0"
tokio = { version = "1", features = ["macros", "time", "rt", "rt-multi-thread"] }
toml = "0.8"
unic-langid = "0.9"
ureq = { version = "2.4", features = ["json"] }
url = "2.3"
uuid = { version = "1.2", features = ["serde", "v4", "v5"] }
voca_rs = "1"
### Prefer git to crates.io for development
reactive-graph-behaviour-model-api = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
reactive-graph-behaviour-model-impl = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
reactive-graph-behaviour-service-api = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
reactive-graph-config-model = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
reactive-graph-graph = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
reactive-graph-runtime-model = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
reactive-graph-plugin-api = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
reactive-graph-plugin-derive = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
reactive-graph-reactive-model-api = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
reactive-graph-reactive-model-impl = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
reactive-graph-reactive-service-api = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git", features = ["derive"] }
reactive-graph-reactive-service-impl = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
reactive-graph-type-system-api = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git", features = ["json5", "toml"] }
reactive-graph-lifecycle = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
reactive-graph-test-utils = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
### Prefer local to git for local development
#reactive-graph-behaviour-model-api = { version = "0.10.0", path = "../inexor-rgf/crates/behaviour/model/api" }
#reactive-graph-behaviour-model-impl = { version = "0.10.0", path = "../inexor-rgf/crates/behaviour/model/impl" }
#reactive-graph-behaviour-service-api = { version = "0.10.0", path = "../inexor-rgf/crates/behaviour/service/api" }
#reactive-graph-config-model = { version = "0.10.0", path = "../inexor-rgf/crates/config/model" }
#reactive-graph-graph = { version = "0.10.0", path = "../inexor-rgf/crates/graph" }
#reactive-graph-plugin-api = { version = "0.10.0", path = "../inexor-rgf/crates/plugin/api" }
#reactive-graph-plugin-derive = { version = "0.10.0", path = "../inexor-rgf/crates/plugin/derive" }
#reactive-graph-reactive-model-api = { version = "0.10.0", path = "../inexor-rgf/crates/reactive/model/api" }
#reactive-graph-reactive-model-impl = { version = "0.10.0", path = "../inexor-rgf/crates/reactive/model/impl" }
#reactive-graph-reactive-service-api = { version = "0.10.0", path = "../inexor-rgf/crates/reactive/service/api", features = ["derive"] }
#reactive-graph-reactive-service-impl = { version = "0.10.0", path = "../inexor-rgf/crates/reactive/service/impl" }
#reactive-graph-runtime-api = { version = "0.10.0", path = "../inexor-rgf/crates/runtime/api" }
#reactive-graph-runtime-model = { version = "0.10.0", path = "../inexor-rgf/crates/runtime/model" }
#reactive-graph-type-system-api = { version = "0.10.0", path = "../inexor-rgf/crates/type-system/api", features = ["json5", "toml"] }
#reactive-graph-lifecycle = { version = "0.10.0", path = "../inexor-rgf/crates/lifecycle" }
#reactive-graph-test-utils = { version = "0.10.0", path = "../inexor-rgf/crates/test-utils" }
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
lto = true
strip = "symbols"