Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crates/apollo_base_layer_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Testing utilities for L1 (Ethereum) base layer interactions."

[features]

Expand Down
1 change: 1 addition & 0 deletions crates/apollo_batcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Block building and transaction batching component for the Starknet sequencer."

[features]
cairo_native = ["blockifier/cairo_native"]
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_batcher_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Type definitions and interfaces for the Apollo batcher component."

[features]
testing = ["mockall"]
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_central_sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license-file.workspace = true
description = "Centralized state synchronization from Starknet feeder gateway."

[features]
testing = []
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_central_sync_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license-file.workspace = true
description = "Configuration types for Apollo centralized state synchronization."

[dependencies]
apollo_config.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_class_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ edition.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
description = "Manages Sierra and CASM contract classes, including storage and compilation coordination."

[features]
testing = []
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_class_manager_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ edition.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
description = "Type definitions and interfaces for the Apollo class manager component."

[features]
testing = ["mockall"]
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_compile_to_casm_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ edition.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
description = "Type definitions for Sierra to CASM compilation."

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_config_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Manages dynamic configuration updates and distribution across node components."

[features]
testing = []
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_config_manager_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Type definitions for the Apollo config manager component."

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_consensus_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Manages consensus operations and coordinates between consensus and other node components."

[features]
testing = []
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_consensus_manager_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license-file.workspace = true
description = "Configuration types for the Apollo consensus manager."

[dependencies]
apollo_config.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_consensus_orchestrator_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license-file.workspace = true
description = "Configuration types for the Apollo consensus orchestrator."

[dependencies]
apollo_config.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_dashboard/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Dashboard and monitoring interface for the Starknet sequencer."


[features]
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_deployments/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Deployment configurations and utilities for various Starknet environments."

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ license.workspace = true
name = "apollo_gateway"
repository.workspace = true
version.workspace = true
description = "Gateway component for receiving and validating transactions submitted to the Starknet sequencer."

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_gateway_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Type definitions and interfaces for the Apollo gateway component."

[features]
testing = ["mockall"]
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_http_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "HTTP server for exposing node APIs."

[features]
testing = [
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_http_server_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Configuration types for the Apollo HTTP server."

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_infra/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Infrastructure components including component management and communication patterns."


[features]
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_integration_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ 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"]
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_l1_gas_price/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Tracks and provides L1 (Ethereum) gas prices for Starknet transaction pricing."

[dependencies]
apollo_config.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_l1_gas_price_provider_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Configuration types for the Apollo L1 gas price provider."

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_l1_gas_price_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Type definitions for Apollo L1 gas price tracking."

[dependencies]
apollo_infra.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_l1_provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Provides L1 (Ethereum) message handling and event tracking for Starknet."

[features]
testing = [
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_l1_provider_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Configuration types for the Apollo L1 provider component."

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_l1_provider_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Type definitions for Apollo L1 provider communication."

[features]
testing = ["mockall"]
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_l1_scraper_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Configuration types for the Apollo L1 event scraper."

[dependencies]
apollo_config.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_mempool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Transaction pool management for pending transactions in the Starknet sequencer."

[features]
testing = [
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_mempool_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Configuration types for the Apollo mempool component."

[dependencies]
apollo_config.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_mempool_p2p/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Peer-to-peer transaction propagation for the Apollo mempool."

[features]
testing = []
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_mempool_p2p_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Configuration types for Apollo mempool P2P networking."

[dependencies]
apollo_config.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_mempool_p2p_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Type definitions for Apollo mempool P2P communication."

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_mempool_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ edition.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
description = "Type definitions and interfaces for the Apollo mempool component."

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_monitoring_endpoint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license-file.workspace = true
description = "Monitoring and observability endpoints for the Starknet sequencer."

[features]
testing = ["apollo_metrics/testing", "num-traits", "thiserror", "tower"]
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_monitoring_endpoint_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Configuration types for the Apollo monitoring endpoint."

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license-file.workspace = true
description = "Peer-to-peer networking layer for Starknet nodes using libp2p."

[features]
testing = []
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_network_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license-file.workspace = true
description = "Type definitions for Apollo P2P networking."

[features]
testing = ["apollo_test_utils", "rand_chacha"]
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Main Starknet sequencer node orchestrating all components."

[features]
cairo_native = ["apollo_batcher/cairo_native"]
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_node_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Configuration aggregation for the Apollo sequencer node."

[features]
testing = []
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_p2p_sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license-file.workspace = true
description = "Peer-to-peer state synchronization for Starknet nodes."

[dependencies]
apollo_class_manager_types.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_p2p_sync_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license-file.workspace = true
description = "Configuration types for Apollo P2P state synchronization."

[dependencies]
apollo_config.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_proc_macros_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license-file.workspace = true
description = "Tests for Apollo procedural macros."

[dependencies]
apollo_proc_macros.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_protobuf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license-file.workspace = true
description = "Protocol buffer definitions and serialization for P2P communication."

[features]
testing = ["apollo_test_utils", "rand", "rand_chacha"]
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_reverts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Handles blockchain revert detection and management."

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license-file.workspace = true
description = "JSON-RPC server implementation for Starknet API."

[dependencies]
anyhow.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_sierra_compilation_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Configuration types for Sierra compilation."

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_signature_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Manages cryptographic signatures for consensus messages."

[features]
testing = []
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_signature_manager_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
description = "Type definitions for the Apollo signature manager."

[features]
testing = []
Expand Down
1 change: 1 addition & 0 deletions crates/apollo_staking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition.workspace = true
repository.workspace = true
license-file.workspace = true
description = "Staking functionality for Starknet consensus participants."

[dependencies]
apollo_consensus.workspace = true
Expand Down
Loading
Loading