synor/crates
Gulshan Yadav 47a04244ec feat(vm): add VM optimizations for performance and scalability
Add four major optimization modules to synor-vm:

- scheduler.rs: Sealevel-style parallel execution scheduler with access
  set declarations, conflict detection, and batch scheduling for 10-100x
  throughput on non-conflicting transactions

- tiered.rs: Multi-tier JIT compilation (Cold/Warm/Hot) with LRU caching
  and automatic tier promotion based on execution frequency

- compression.rs: Bytecode compression using zstd (40-70% size reduction),
  content-defined chunking for deduplication, and delta encoding for
  efficient contract upgrades

- speculation.rs: Speculative execution engine with hot state caching,
  version tracking, snapshot/rollback support for 30-70% latency reduction

All modules include comprehensive test coverage (57 tests passing).
2026-01-10 14:53:28 +05:30
..
synor-compiler fix: resolve all clippy warnings for CI 2026-01-08 05:58:22 +05:30
synor-consensus fix: resolve all clippy warnings for CI 2026-01-08 05:58:22 +05:30
synor-contract-test style: format all Rust code with cargo fmt 2026-01-08 05:22:24 +05:30
synor-crypto fix: resolve all clippy warnings for CI 2026-01-08 05:58:22 +05:30
synor-crypto-wasm feat(crypto-wasm): add deterministic Dilithium3 key derivation and hybrid signatures 2026-01-10 05:34:26 +05:30
synor-dag fix: resolve all clippy warnings for CI 2026-01-08 05:58:22 +05:30
synor-governance style: apply cargo fmt formatting 2026-01-08 06:23:23 +05:30
synor-hosting feat(hosting): add hosting gateway server with Docker deployment 2026-01-10 12:45:26 +05:30
synor-mining a 2026-01-08 09:24:26 +05:30
synor-network feat: Phase 7 production readiness improvements 2026-01-08 07:21:14 +05:30
synor-rpc fix: resolve all clippy warnings for CI 2026-01-08 05:58:22 +05:30
synor-sdk fix: resolve all clippy warnings for CI 2026-01-08 05:58:22 +05:30
synor-storage feat(storage): add Synor Storage L2 decentralized storage layer 2026-01-10 11:42:03 +05:30
synor-types fix: resolve all clippy warnings for CI 2026-01-08 05:58:22 +05:30
synor-vm feat(vm): add VM optimizations for performance and scalability 2026-01-10 14:53:28 +05:30