Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): move starknet_mempool_infra dep to root toml #261

Closed
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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ starknet-core = "0.6.0"
starknet-crypto = "0.5.1"
starknet-types-core = { version = "0.1.5", features = ["hash", "prime-bigint", "std"] }
starknet_api = { path = "crates/starknet_api", version = "0.13.0-rc.0" }
starknet_mempool_infra = { path = "crates/mempool_infra", version = "0.0" }
static_assertions = "1.1.0"
statistical = "1.0.0"
strum = "0.25.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ serde.workspace = true
serde_json.workspace = true
starknet-types-core.workspace = true
starknet_api.workspace = true
starknet_mempool_infra = { path = "../mempool_infra", version = "0.0" }
starknet_mempool_infra.workspace = true
starknet_mempool_types = { path = "../mempool_types", version = "0.0" }
starknet_sierra_compile = { path = "../starknet_sierra_compile", version = "0.0" }
thiserror.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/mempool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ workspace = true
async-trait.workspace = true
derive_more.workspace = true
starknet_api.workspace = true
starknet_mempool_infra = { path = "../mempool_infra", version = "0.0" }
starknet_mempool_infra.workspace = true
starknet_mempool_types = { path = "../mempool_types", version = "0.0" }
tokio.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion crates/mempool_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ papyrus_config.workspace = true
serde.workspace = true
starknet_gateway = { path = "../gateway", version = "0.0" }
starknet_mempool = { path = "../mempool", version = "0.0" }
starknet_mempool_infra = { path = "../mempool_infra", version = "0.0" }
starknet_mempool_infra.workspace = true
starknet_mempool_types = { path = "../mempool_types", version = "0.0" }
tokio.workspace = true
tracing.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/mempool_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ workspace = true
async-trait.workspace = true
mockall.workspace = true
starknet_api.workspace = true
starknet_mempool_infra = { path = "../mempool_infra" }
starknet_mempool_infra.workspace = true
thiserror.workspace = true
4 changes: 2 additions & 2 deletions crates/tests-integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ starknet-types-core.workspace = true
starknet_api.workspace = true
starknet_client = { path = "../starknet_client", version = "0.4.0-rc.0" }
starknet_gateway = { path = "../gateway", version = "0.0", features = ["testing"] }
starknet_mempool_infra = { path = "../mempool_infra", version = "0.0" }
starknet_mempool_infra.workspace = true
starknet_mempool_node = { path = "../mempool_node", version = "0.0" }
starknet_mempool_types = { path = "../mempool_types", version = "0.0" }
starknet_task_executor = { path = "../task_executor", version = "0.0" }
Expand All @@ -35,4 +35,4 @@ tokio.workspace = true
[dev-dependencies]
pretty_assertions.workspace = true
rstest.workspace = true
starknet_mempool_infra = { path = "../mempool_infra", version = "0.0" }
starknet_mempool_infra.workspace = true
Loading