-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (39 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
48 lines (39 loc) · 1.47 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
[workspace]
members = [
"plugins/graphql-client",
"plugins/graphql-schema-visualization",
"deployment"
]
resolver = "3"
[workspace.package]
version = "0.10.0"
authors = ["Andreas Schaeffer <hanack@nooblounge.net>"]
edition = "2024"
license = "MIT"
repository = "https://github.com/reactive-graph/tooling"
homepage = "https://tooling.reactive-graph.io/"
keywords = ["graph", "reactive", "control-flow", "inexor"]
rust-version = "1.87.0"
[workspace.dependencies]
async-trait = "0.1"
http = "0.2"
log = { version = "0.4", features = ["std", "serde"] }
log4rs = { version = "1.4.0", features = ["console_appender", "file_appender", "toml_format"] }
mime_guess = "2.0"
rust-embed = { version = "8.8", features = ["debug-embed", "compression"] }
serde = { version = "1.0", features = ["derive"] }
springtime = "1.0"
springtime-di = { version = "1.0", default-features = false, features = ["threadsafe", "derive"] }
toml = "0.9"
uuid = { version = "1.18", features = ["serde", "v4", "v5"] }
### Prefer git to crates.io for development
reactive-graph-plugin-api = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
reactive-graph-utils-deployment = { version = "0.10.0", git = "https://github.com/reactive-graph/reactive-graph.git" }
### Prefer local to git for local development
#reactive-graph-plugin-api = { version = "0.10.0", path = "../inexor-rgf/crates/plugin/api" }
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
lto = true
strip = "symbols"