Problem
dex_router.rs line 1 imports vec from soroban_sdk but never uses it:
use soroban_sdk::{contract, contractimpl, Address, Env, Vec, vec};
// ^^^ unused
CI runs cargo clippy --all-targets --all-features -- -D warnings, so this warning is promoted to an error and blocks the pipeline.
Acceptance Criteria
Branch & Commit Examples
branch: fix/clippy-warnings-cleanup
commit: fix(dex-router): remove unused vec import
Problem
dex_router.rsline 1 importsvecfromsoroban_sdkbut never uses it:CI runs
cargo clippy --all-targets --all-features -- -D warnings, so this warning is promoted to an error and blocks the pipeline.Acceptance Criteria
vecis removed from the import index_router.rscargo clippy --all-targets --all-features -- -D warningsproduces zero warnings/errors for this fileBranch & Commit Examples