Skip to content

Commit

Permalink
Align Cargo.toml deps
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNeshi committed Oct 3, 2024
1 parent a4c21fb commit 34eda9f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
3 changes: 1 addition & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion contracts/src/token/erc20/utils/safe_erc20.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
use alloc::vec::Vec;
use alloy_primitives::{Address, U256};
use alloy_sol_types::{sol, SolValue};
use stylus_proc::{public, sol_interface, sol_storage, SolidityError};
use stylus_sdk::{
call::{Call, RawCall},
contract::address,
evm::gas_left,
function_selector,
storage::TopLevelStorage,
stylus_proc::{public, sol_interface, sol_storage, SolidityError},
types::AddressVM,
};

Expand Down
9 changes: 4 additions & 5 deletions examples/safe-erc20/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,19 @@ edition.workspace = true
license.workspace = true
repository.workspace = true
publish = false
version = "0.0.0"
version.workspace = true

[dependencies]
openzeppelin-stylus = { path = "../../contracts" }
alloy-primitives = { workspace = true, features = ["tiny-keccak"] }
openzeppelin-stylus.workspace = true
alloy-primitives.workspace = true
stylus-sdk.workspace = true
stylus-proc.workspace = true
mini-alloc.workspace = true

[dev-dependencies]
alloy.workspace = true
eyre.workspace = true
tokio.workspace = true
e2e = { path = "../../lib/e2e" }
e2e.workspace = true

[features]
e2e = []
Expand Down

0 comments on commit 34eda9f

Please sign in to comment.