Getting issue while deploying

Error: Failed while trying to deploy canisters.
Caused by: Failed while trying to install all canisters.
Caused by: Failed to install wasm module to canister ‘sign_backend’.
Caused by: Failed during wasm installation call
Caused by: The replica returned a rejection error: reject code CanisterError, reject message Error from Canister bkyz2-fmaaa-aaaaa-qaaaq-cai: Canister’s Wasm module is not valid: Wasm module has an invalid import section. Module imports function ‘__wbindgen_describe’ from ‘wbindgen_placeholder’ that is not exported by the runtime…
This is likely an error with the compiler/CDK toolchain being used to build the canister. Please report the error to IC devs on the forum: https://forum.dfinity.org and include which language/CDK was used to create the canister., error code None

My Cargo.toml

[dependencies]
ic-cdk = "0.12.0"
ethers-core = "0.6.1"
hex = "0.4.3"
dotenv = "0.15"
parity-scale-codec = "2.0.0"
rlp = "0.4"
sha3 = "0.9.1"
num-traits = "0.2.19"
candid = "0.10"
evm-rpc-canister-types = "0.1.2"
alloy = { git = "https://github.com/alloy-rs/alloy", default-features = false, features = [ "contract" ] }
alloy-consensus = "0.1.3"
alloy-eips = "0.1.3"
alloy-primitives = "0.7.6"
ic-ethereum-types = { git = "https://github.com/dfinity/ic", tag = "release-2024-06-26_23-01-base", package = "ic-ethereum-types" }
k256 = { version = "0.12.0", features = ["ecdsa"] }
# Enable `custom` feature of k256's getrandom dependency. See lib.rs for more details.
getrandom = { version = "0.2", features = ["custom"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ethers = "2.0" 

You must ensure that none of your dependencies use wbindgen.

Can you try cargo tree --all-features to see where the dependency might be?