Skip to content

Commit

Permalink
fix rebased to alpha.16
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy committed Oct 23, 2024
1 parent 0e09224 commit 3bb799e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

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

10 changes: 8 additions & 2 deletions crates/katana/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ katana-primitives.workspace = true
katana-provider.workspace = true

parking_lot = { workspace = true, optional = true }
starknet = { workspace = true, optional = true }
thiserror.workspace = true
tracing.workspace = true

Expand All @@ -23,14 +24,14 @@ anyhow.workspace = true
cainome.workspace = true
dojo-test-utils.workspace = true
katana-cairo.workspace = true
katana-node.workspace = true
katana-provider = { workspace = true, features = [ "test-utils" ] }
katana-rpc-types.workspace = true
num-traits.workspace = true
rstest.workspace = true
rstest_reuse.workspace = true
serde_json.workspace = true
similar-asserts.workspace = true
starknet.workspace = true
tokio.workspace = true

criterion.workspace = true
Expand All @@ -39,7 +40,12 @@ pprof = { version = "0.13.0", features = [ "criterion", "flamegraph" ] }
rayon.workspace = true

[features]
blockifier = [ "dep:blockifier", "dep:katana-cairo", "dep:parking_lot" ]
blockifier = [
"dep:blockifier",
"dep:katana-cairo",
"dep:parking_lot",
"dep:starknet",
]
default = [ "blockifier" ]

[[bench]]
Expand Down
3 changes: 2 additions & 1 deletion crates/katana/executor/tests/chain_id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ mod fixtures;
use std::sync::Arc;

use cainome::rs::abigen;
use dojo_test_utils::sequencer::{get_default_test_config, SequencingConfig, TestSequencer};
use dojo_test_utils::sequencer::{get_default_test_config, TestSequencer};
use katana_node::config::SequencingConfig;
use katana_primitives::chain::ChainId;
use katana_primitives::contract::ContractAddress;
use katana_primitives::genesis::allocation::{GenesisAllocation, GenesisContractAlloc};
Expand Down

0 comments on commit 3bb799e

Please sign in to comment.