-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathCargo.toml
More file actions
113 lines (103 loc) · 4.15 KB
/
Cargo.toml
File metadata and controls
113 lines (103 loc) · 4.15 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
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
[package]
name = "apollo_integration_tests"
version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "End-to-end integration tests for the Starknet sequencer."
[features]
cairo_native = ["apollo_batcher/cairo_native"]
[lints]
workspace = true
[dependencies]
alloy.workspace = true
anyhow.workspace = true
apollo_base_layer_tests.workspace = true
apollo_batcher.workspace = true
apollo_batcher_config.workspace = true
apollo_class_manager = { workspace = true, features = ["testing"] }
apollo_class_manager_config.workspace = true
apollo_committer_config.workspace = true
apollo_config.workspace = true
apollo_config_manager_config = { workspace = true, features = ["testing"] }
apollo_consensus.workspace = true
apollo_consensus_config.workspace = true
apollo_consensus_manager_config.workspace = true
apollo_consensus_orchestrator.workspace = true
apollo_consensus_orchestrator_config.workspace = true
apollo_deployments.workspace = true
apollo_gateway_config.workspace = true
apollo_http_server = { workspace = true, features = ["testing"] }
apollo_infra = { workspace = true, features = ["testing"] }
apollo_infra_utils = { workspace = true, features = ["testing"] }
apollo_l1_gas_price.workspace = true
apollo_l1_gas_price_provider_config.workspace = true
apollo_l1_gas_price_types.workspace = true
apollo_l1_provider.workspace = true
apollo_l1_provider_config.workspace = true
apollo_l1_scraper_config.workspace = true
apollo_mempool_config.workspace = true
apollo_mempool_p2p_config.workspace = true
apollo_metrics.workspace = true
apollo_monitoring_endpoint = { workspace = true, features = ["testing"] }
apollo_monitoring_endpoint_config.workspace = true
apollo_network = { workspace = true, features = ["testing"] }
apollo_node = { workspace = true, features = ["testing"] }
apollo_node_config = { workspace = true, features = ["testing"] }
apollo_protobuf.workspace = true
apollo_rpc.workspace = true
apollo_sierra_compilation_config.workspace = true
apollo_state_sync_config.workspace = true
apollo_state_sync_metrics.workspace = true
apollo_storage = { workspace = true, features = ["testing"] }
apollo_test_utils.workspace = true
assert_matches.workspace = true
axum.workspace = true
blockifier = { workspace = true, features = ["testing"] }
blockifier_test_utils.workspace = true
cairo-lang-starknet-classes.workspace = true
clap = { workspace = true, features = ["derive"] }
futures.workspace = true
hex.workspace = true
indexmap.workspace = true
mempool_test_utils.workspace = true
metrics-exporter-prometheus.workspace = true
papyrus_base_layer = { workspace = true, features = ["testing"] }
pretty_assertions.workspace = true
serde.workspace = true
serde_json.workspace = true
starknet-types-core.workspace = true
starknet_api.workspace = true
static_assertions.workspace = true
strum.workspace = true
tempfile.workspace = true
tokio.workspace = true
tokio-util = { workspace = true, features = ["rt"] }
tracing.workspace = true
url.workspace = true
[dev-dependencies]
apollo_infra.workspace = true
apollo_l1_provider.workspace = true
apollo_l1_provider_types = { workspace = true, features = ["testing"] }
futures.workspace = true
metrics.workspace = true
mockall.workspace = true
rstest.workspace = true
[[bin]]
name = "integration_test_positive_flow"
path = "src/bin/sequencer_node_end_to_end_integration_tests/integration_test_positive_flow.rs"
[[bin]]
name = "integration_test_restart_flow"
path = "src/bin/sequencer_node_end_to_end_integration_tests/integration_test_restart_flow.rs"
[[bin]]
name = "integration_test_restart_service_multiple_nodes_flow"
path = "src/bin/sequencer_node_end_to_end_integration_tests/integration_test_restart_service_multiple_nodes_flow.rs"
[[bin]]
name = "integration_test_restart_service_single_node_flow"
path = "src/bin/sequencer_node_end_to_end_integration_tests/integration_test_restart_service_single_node_flow.rs"
[[bin]]
name = "integration_test_revert_flow"
path = "src/bin/sequencer_node_end_to_end_integration_tests/integration_test_revert_flow.rs"
[[bin]]
name = "integration_test_central_and_p2p_sync_flow"
path = "src/bin/sequencer_node_end_to_end_integration_tests/integration_test_central_and_p2p_sync_flow.rs"