-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathCargo.toml
59 lines (55 loc) · 1.73 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
[package]
name = "loom-core-topology"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
loom-broadcast-accounts.workspace = true
loom-broadcast-broadcaster.workspace = true
loom-broadcast-flashbots.workspace = true
loom-core-actors.workspace = true
loom-core-block-history.workspace = true
loom-core-blockchain.workspace = true
loom-core-mempool.workspace = true
loom-core-router.workspace = true
loom-defi-health-monitor.workspace = true
loom-defi-market.workspace = true
loom-defi-pools.workspace = true
loom-defi-preloader.workspace = true
loom-defi-price.workspace = true
loom-evm-db.workspace = true
loom-execution-estimator.workspace = true
loom-execution-multicaller.workspace = true
loom-node-actor-config.workspace = true
loom-node-db-access = { workspace = true, optional = true }
loom-node-grpc.workspace = true
loom-node-grpc-exex-proto.workspace = true
loom-node-json-rpc.workspace = true
loom-rpc-handler.workspace = true
loom-rpc-state.workspace = true
loom-strategy-backrun.workspace = true
loom-strategy-merger.workspace = true
loom-types-blockchain.workspace = true
loom-types-entities.workspace = true
loom-types-events.workspace = true
eyre.workspace = true
revm.workspace = true
serde.workspace = true
strum.workspace = true
strum_macros.workspace = true
tokio.workspace = true
toml.workspace = true
tracing.workspace = true
# alloy
alloy-primitives.workspace = true
alloy-provider.workspace = true
alloy-rpc-client.workspace = true
alloy-rpc-types.workspace = true
alloy-transport.workspace = true
alloy-transport-ipc.workspace = true
alloy-transport-ws.workspace = true
[features]
db-access = ["dep:loom-node-db-access"]