Skip to content

Commit

Permalink
fix(katana-core): crate can't be build without any feature (#1527)
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy authored Feb 8, 2024
1 parent 118ed84 commit c839363
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
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.

1 change: 1 addition & 0 deletions crates/katana/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ flate2.workspace = true
futures.workspace = true
lazy_static = "1.4.0"
parking_lot.workspace = true
primitive-types = "0.12.2"
rand = { version = "0.8.5", features = [ "small_rng" ] }
serde.workspace = true
serde_json.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/katana/core/src/backend/config.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::path::PathBuf;

use ethers::types::U256;
use ::primitive_types::U256;
use katana_primitives::block::GasPrices;
use katana_primitives::chain::ChainId;
use katana_primitives::env::BlockEnv;
Expand Down

0 comments on commit c839363

Please sign in to comment.