Skip to content

Commit

Permalink
build: add batcher_types crate
Browse files Browse the repository at this point in the history
commit-id:473342a7
  • Loading branch information
Itay-Tsabary-Starkware committed Aug 1, 2024
1 parent 293466d commit c2a9a35
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 35 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,72 @@ resolver = "2"

members = [
"crates/batcher",
"crates/batcher",
"crates/batcher_types",
"crates/batcher_types",
"crates/blockifier",
"crates/blockifier",
"crates/committer",
"crates/committer",
"crates/committer_cli",
"crates/committer_cli",
"crates/gateway",
"crates/gateway",
"crates/mempool",
"crates/mempool",
"crates/mempool_infra",
"crates/mempool_infra",
"crates/mempool_node",
"crates/mempool_node",
"crates/mempool_test_utils",
"crates/mempool_test_utils",
"crates/mempool_types",
"crates/mempool_types",
"crates/native_blockifier",
"crates/native_blockifier",
"crates/papyrus_base_layer",
"crates/papyrus_base_layer",
"crates/papyrus_common",
"crates/papyrus_common",
"crates/papyrus_config",
"crates/papyrus_config",
"crates/papyrus_execution",
"crates/papyrus_execution",
"crates/papyrus_load_test",
"crates/papyrus_load_test",
"crates/papyrus_monitoring_gateway",
"crates/papyrus_monitoring_gateway",
"crates/papyrus_network",
"crates/papyrus_network",
"crates/papyrus_node",
"crates/papyrus_node",
"crates/papyrus_p2p_sync",
"crates/papyrus_p2p_sync",
"crates/papyrus_proc_macros",
"crates/papyrus_proc_macros",
"crates/papyrus_protobuf",
"crates/papyrus_protobuf",
"crates/papyrus_rpc",
"crates/papyrus_rpc",
"crates/papyrus_storage",
"crates/papyrus_storage",
"crates/papyrus_sync",
"crates/papyrus_sync",
"crates/papyrus_test_utils",
"crates/papyrus_test_utils",
"crates/sequencing/papyrus_block_builder",
"crates/sequencing/papyrus_block_builder",
"crates/sequencing/papyrus_consensus",
"crates/sequencing/papyrus_consensus",
"crates/starknet_api",
"crates/starknet_api",
"crates/starknet_client",
"crates/starknet_client",
"crates/starknet_sierra_compile",
"crates/starknet_sierra_compile",
"crates/task_executor",
"crates/task_executor",
"crates/tests-integration",
"crates/tests-integration",
]

Expand Down
12 changes: 12 additions & 0 deletions crates/batcher_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "starknet_batcher_types"
version = "0.0.0"
edition.workspace = true
license.workspace = true
repository.workspace = true


[dependencies]

[lints]
workspace = true
1 change: 1 addition & 0 deletions crates/batcher_types/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

0 comments on commit c2a9a35

Please sign in to comment.