synor/crates/synor-vm/src
Gulshan Yadav 3e68f72743 fix: resolve 35 clippy warnings across Rust and Dart codebases
## Rust Fixes (35 warnings resolved)
- Remove unused imports (synor-vm, synor-bridge, tests)
- Remove unused variables and prefix intentional ones with underscore
- Use derive for Default implementations (6 structs)
- Replace manual is_multiple_of with standard method (3 occurrences)
- Fix needless borrows by using direct expressions (12 occurrences)
- Suppress false-positive variant assignment warnings with allow attributes
- Fix Default field initialization pattern in synor-crypto
- Rename MerklePath::to_string() to path() to avoid conflict with Display trait

## Flutter/Dart Fixes
- Add const constructors for immutable objects (8 instances)
- Remove unused imports (dart:convert, collection package, tensor.dart)

## Impact
- Reduced clippy warnings from 49 to 10 (79% reduction)
- Remaining 10 warnings are "too many arguments" requiring architectural refactoring
- All library code compiles successfully
- Code quality and maintainability improved
2026-01-26 17:08:57 +05:30
..
compression.rs feat(vm): add VM optimizations for performance and scalability 2026-01-10 14:53:28 +05:30
compute.rs fix: resolve 35 clippy warnings across Rust and Dart codebases 2026-01-26 17:08:57 +05:30
context.rs Initial commit: Synor blockchain monorepo 2026-01-08 05:22:17 +05:30
engine.rs style: format all Rust code with cargo fmt 2026-01-08 05:22:24 +05:30
gas.rs Initial commit: Synor blockchain monorepo 2026-01-08 05:22:17 +05:30
gas_estimator.rs style: format all Rust code with cargo fmt 2026-01-08 05:22:24 +05:30
host.rs style: format all Rust code with cargo fmt 2026-01-08 05:22:24 +05:30
lib.rs feat(compute): integrate synor-compute with VM and hosting layers 2026-01-11 14:05:45 +05:30
scheduler.rs feat(vm): add VM optimizations for performance and scalability 2026-01-10 14:53:28 +05:30
speculation.rs feat(vm): add VM optimizations for performance and scalability 2026-01-10 14:53:28 +05:30
storage.rs fix: resolve all clippy warnings for CI 2026-01-08 05:58:22 +05:30
tiered.rs feat(vm): add VM optimizations for performance and scalability 2026-01-10 14:53:28 +05:30