-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (47 loc) · 1.51 KB
/
Cargo.toml
File metadata and controls
49 lines (47 loc) · 1.51 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
[workspace]
resolver = "3"
members = [
"crates/bbuilder",
"crates/spec",
"crates/runtime-docker-compose",
"crates/catalog",
"crates/template",
"crates/babel",
"crates/babel-api",
"crates/fetcher",
"crates/fetcher-api",
"crates/cosmos-keys",
"catalog/berachain",
"catalog/ethereum",
"catalog/polygon",
"catalog/tempo"
]
[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" }
babel-api = { path = "crates/babel-api" }
fetcher-api = { path = "crates/fetcher-api" }
cosmos-keys = { path = "crates/cosmos-keys" }
catalog-berachain = { path = "catalog/berachain" }
catalog-ethereum = { path = "catalog/ethereum" }
catalog-polygon = { path = "catalog/polygon" }
catalog-tempo = { path = "catalog/tempo" }
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"
clap = { version = "4.5", features = ["derive"] }
reqwest = { version = "0.12", default-features = false }
jsonrpsee = { version = "0.24", features = ["server", "ws-client", "http-client", "macros"] }
tracing = "0.1"
tracing-subscriber = "0.3"
getrandom = { version = "0.2", features = ["js"] }