forked from ferranbt/bbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 892 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 892 Bytes
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
[workspace]
resolver = "3"
members = [
"crates/bbuilder",
"crates/spec",
"crates/runtime-docker-compose",
"crates/runtime-trait",
"crates/catalog",
"crates/template",
"crates/babel",
"crates/fetcher"
]
[workspace.dependencies]
spec = { path = "crates/spec" }
runtime-docker-compose = { path = "crates/runtime-docker-compose" }
runtime-trait = { path = "crates/runtime-trait" }
catalog = { path = "crates/catalog" }
template = { path = "crates/template" }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.34"
rmp-serde = "1.0"
tonic = { version = "0.12", default-features = false }
tokio = { version = "1.40.0", features = ["full"] }
eyre = "0.6.12"
async-trait = "0.1.89"
serde_json = "1.0.145"
include_dir = "0.7"
tinytemplate = "1.2"
askama = "0.14.0"
clap = { version = "4.5" }
reqwest = { version = "0.12", default-features = false }