exonware-xwsystem 0.0.1.405__tar.gz → 0.0.1.406__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (512) hide show
  1. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/PKG-INFO +2 -2
  2. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/README.md +1 -1
  3. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/pyproject.toml +1 -1
  4. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/__init__.py +2 -2
  5. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/conf.py +1 -1
  6. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/__init__.py +1 -1
  7. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/_lazy_bootstrap.py +1 -1
  8. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/__init__.py +1 -1
  9. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/base.py +1 -1
  10. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/bloom_cache.py +1 -1
  11. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/cache_manager.py +1 -1
  12. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/conditional.py +1 -1
  13. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/contracts.py +1 -1
  14. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/decorators.py +1 -1
  15. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/defs.py +1 -1
  16. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/disk_cache.py +1 -1
  17. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/distributed.py +1 -1
  18. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/errors.py +1 -1
  19. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/events.py +1 -1
  20. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/eviction_strategies.py +1 -1
  21. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/fluent.py +1 -1
  22. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/integrity.py +1 -1
  23. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/lfu_cache.py +1 -1
  24. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/lfu_optimized.py +1 -1
  25. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/lru_cache.py +1 -1
  26. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/memory_bounded.py +1 -1
  27. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/metrics_exporter.py +1 -1
  28. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/observable_cache.py +1 -1
  29. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/pluggable_cache.py +1 -1
  30. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/rate_limiter.py +1 -1
  31. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/read_through.py +1 -1
  32. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/secure_cache.py +1 -1
  33. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/serializable.py +1 -1
  34. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/stats.py +1 -1
  35. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/tagging.py +1 -1
  36. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/ttl_cache.py +1 -1
  37. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/two_tier_cache.py +1 -1
  38. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/utils.py +1 -1
  39. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/validation.py +1 -1
  40. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/warming.py +1 -1
  41. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/write_behind.py +1 -1
  42. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/cli/__init__.py +1 -1
  43. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/cli/args.py +1 -1
  44. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/cli/base.py +1 -1
  45. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/cli/colors.py +1 -1
  46. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/cli/console.py +1 -1
  47. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/cli/contracts.py +1 -1
  48. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/cli/defs.py +1 -1
  49. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/cli/errors.py +1 -1
  50. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/cli/progress.py +1 -1
  51. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/cli/prompts.py +1 -1
  52. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/cli/tables.py +1 -1
  53. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/config/__init__.py +1 -1
  54. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/config/base.py +1 -1
  55. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/config/contracts.py +1 -1
  56. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/config/defaults.py +1 -1
  57. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/config/defs.py +1 -1
  58. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/config/errors.py +1 -1
  59. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/config/logging.py +1 -1
  60. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/config/logging_setup.py +1 -1
  61. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/config/performance.py +1 -1
  62. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/http/__init__.py +1 -1
  63. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/http/advanced_client.py +1 -1
  64. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/http/base.py +1 -1
  65. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/http/client.py +1 -1
  66. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/http/contracts.py +1 -1
  67. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/http/defs.py +1 -1
  68. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/http/errors.py +1 -1
  69. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/__init__.py +1 -1
  70. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/__init__.py +1 -1
  71. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/archive.py +1 -1
  72. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/archive_files.py +1 -1
  73. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/archivers.py +1 -1
  74. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/base.py +1 -1
  75. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/codec_integration.py +1 -1
  76. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/compression.py +1 -1
  77. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/formats/__init__.py +1 -1
  78. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/formats/brotli_format.py +1 -1
  79. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/formats/lz4_format.py +1 -1
  80. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/formats/rar.py +1 -1
  81. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/formats/sevenzip.py +1 -1
  82. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/formats/squashfs_format.py +1 -1
  83. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/formats/tar.py +1 -1
  84. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/formats/wim_format.py +1 -1
  85. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/formats/zip.py +1 -1
  86. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/formats/zpaq_format.py +1 -1
  87. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/archive/formats/zstandard.py +1 -1
  88. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/base.py +1 -1
  89. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/codec/__init__.py +1 -1
  90. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/codec/base.py +1 -1
  91. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/codec/contracts.py +1 -1
  92. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/codec/registry.py +1 -1
  93. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/common/__init__.py +1 -1
  94. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/common/base.py +1 -1
  95. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/common/lock.py +1 -1
  96. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/common/watcher.py +1 -1
  97. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/contracts.py +1 -1
  98. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/defs.py +1 -1
  99. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/errors.py +1 -1
  100. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/facade.py +1 -1
  101. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/file/__init__.py +1 -1
  102. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/file/base.py +1 -1
  103. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/file/conversion.py +1 -1
  104. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/file/file.py +1 -1
  105. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/file/paged_source.py +1 -1
  106. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/file/paging/__init__.py +1 -1
  107. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/file/paging/byte_paging.py +1 -1
  108. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/file/paging/line_paging.py +1 -1
  109. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/file/paging/record_paging.py +1 -1
  110. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/file/paging/registry.py +1 -1
  111. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/file/source.py +1 -1
  112. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/filesystem/__init__.py +1 -1
  113. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/filesystem/base.py +1 -1
  114. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/filesystem/local.py +1 -1
  115. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/folder/__init__.py +1 -1
  116. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/folder/base.py +1 -1
  117. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/folder/folder.py +1 -1
  118. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/__init__.py +1 -1
  119. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/auto_serializer.py +1 -1
  120. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/base.py +1 -1
  121. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/contracts.py +1 -1
  122. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/defs.py +1 -1
  123. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/errors.py +1 -1
  124. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/flyweight.py +1 -1
  125. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/format_detector.py +1 -1
  126. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/__init__.py +1 -1
  127. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/binary/bson.py +1 -1
  128. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/binary/cbor.py +1 -1
  129. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/binary/marshal.py +1 -1
  130. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/binary/msgpack.py +1 -1
  131. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/binary/pickle.py +1 -1
  132. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/binary/plistlib.py +1 -1
  133. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/database/dbm.py +1 -1
  134. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/database/shelve.py +1 -1
  135. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/database/sqlite3.py +1 -1
  136. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/text/configparser.py +1 -1
  137. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/text/csv.py +1 -1
  138. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/text/formdata.py +1 -1
  139. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/text/json.py +1 -1
  140. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/text/json5.py +1 -1
  141. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/text/jsonlines.py +1 -1
  142. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/text/multipart.py +1 -1
  143. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/text/toml.py +1 -1
  144. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/text/xml.py +1 -1
  145. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/text/yaml.py +1 -1
  146. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/registry.py +1 -1
  147. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/serializer.py +1 -1
  148. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/utils/__init__.py +1 -1
  149. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/utils/path_ops.py +1 -1
  150. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/stream/__init__.py +1 -1
  151. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/stream/async_operations.py +1 -1
  152. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/stream/base.py +1 -1
  153. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/stream/codec_io.py +1 -1
  154. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/ipc/async_fabric.py +1 -1
  155. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/ipc/base.py +1 -1
  156. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/ipc/contracts.py +1 -1
  157. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/ipc/defs.py +1 -1
  158. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/ipc/errors.py +1 -1
  159. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/base.py +1 -1
  160. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/contracts.py +1 -1
  161. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/defs.py +1 -1
  162. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/errors.py +1 -1
  163. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/performance_manager_generic.py +1 -1
  164. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/system_monitor.py +1 -1
  165. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/tracing.py +1 -1
  166. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/tracker.py +1 -1
  167. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/operations/__init__.py +1 -1
  168. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/operations/base.py +1 -1
  169. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/operations/defs.py +1 -1
  170. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/operations/diff.py +1 -1
  171. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/operations/merge.py +1 -1
  172. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/operations/patch.py +1 -1
  173. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/patterns/base.py +1 -1
  174. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/patterns/contracts.py +1 -1
  175. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/patterns/defs.py +1 -1
  176. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/patterns/errors.py +1 -1
  177. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/patterns/registry.py +1 -1
  178. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/plugins/__init__.py +1 -1
  179. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/plugins/base.py +1 -1
  180. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/plugins/contracts.py +1 -1
  181. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/plugins/defs.py +1 -1
  182. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/plugins/errors.py +1 -1
  183. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/runtime/__init__.py +1 -1
  184. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/runtime/base.py +1 -1
  185. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/runtime/contracts.py +1 -1
  186. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/runtime/defs.py +1 -1
  187. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/runtime/env.py +1 -1
  188. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/runtime/errors.py +1 -1
  189. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/runtime/reflection.py +1 -1
  190. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/security/auth.py +1 -1
  191. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/security/base.py +1 -1
  192. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/security/contracts.py +1 -1
  193. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/security/crypto.py +1 -1
  194. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/security/defs.py +1 -1
  195. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/security/errors.py +1 -1
  196. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/security/hazmat.py +1 -1
  197. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/shared/__init__.py +1 -1
  198. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/shared/base.py +1 -1
  199. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/shared/contracts.py +1 -1
  200. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/shared/defs.py +1 -1
  201. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/shared/errors.py +1 -1
  202. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/structures/base.py +1 -1
  203. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/structures/contracts.py +1 -1
  204. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/structures/defs.py +1 -1
  205. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/structures/errors.py +1 -1
  206. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/threading/async_primitives.py +1 -1
  207. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/threading/base.py +1 -1
  208. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/threading/contracts.py +1 -1
  209. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/threading/defs.py +1 -1
  210. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/threading/errors.py +1 -1
  211. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/base.py +1 -1
  212. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/contracts.py +1 -1
  213. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/dt/__init__.py +1 -1
  214. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/dt/base.py +1 -1
  215. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/dt/contracts.py +1 -1
  216. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/dt/defs.py +1 -1
  217. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/dt/errors.py +1 -1
  218. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/dt/formatting.py +1 -1
  219. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/dt/humanize.py +1 -1
  220. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/dt/parsing.py +1 -1
  221. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/dt/timezone_utils.py +1 -1
  222. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/errors.py +1 -1
  223. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/lazy_package/__init__.py +1 -1
  224. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/lazy_package/lazy_base.py +1 -1
  225. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/lazy_package/lazy_contracts.py +1 -1
  226. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/lazy_package/lazy_core.py +1 -1
  227. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/lazy_package/lazy_errors.py +1 -1
  228. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/test_runner.py +1 -1
  229. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/utils_contracts.py +1 -1
  230. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/validation/__init__.py +1 -1
  231. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/validation/base.py +1 -1
  232. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/validation/contracts.py +1 -1
  233. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/validation/declarative.py +1 -1
  234. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/validation/defs.py +1 -1
  235. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/validation/errors.py +1 -1
  236. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/validation/fluent_validator.py +1 -1
  237. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/version.py +2 -2
  238. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/xwsystem.py +1 -1
  239. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/.github/workflows/publish.yml +0 -0
  240. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/.gitignore +0 -0
  241. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/LICENSE +0 -0
  242. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/caching/USAGE_GUIDE.md +0 -0
  243. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/conf.py +0 -0
  244. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/config/performance_modes.py +0 -0
  245. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/config/version_manager.py +0 -0
  246. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/common/atomic.py +0 -0
  247. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/common/path_manager.py +0 -0
  248. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/binary/__init__.py +0 -0
  249. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/database/__init__.py +0 -0
  250. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/io/serialization/formats/text/__init__.py +0 -0
  251. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/ipc/__init__.py +0 -0
  252. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/ipc/message_queue.py +0 -0
  253. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/ipc/pipes.py +0 -0
  254. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/ipc/process_manager.py +0 -0
  255. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/ipc/process_pool.py +0 -0
  256. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/ipc/shared_memory.py +0 -0
  257. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/__init__.py +0 -0
  258. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/error_recovery.py +0 -0
  259. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/memory_monitor.py +0 -0
  260. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/metrics.py +0 -0
  261. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/performance_monitor.py +0 -0
  262. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/monitoring/performance_validator.py +0 -0
  263. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/operations/contracts.py +0 -0
  264. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/operations/errors.py +0 -0
  265. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/patterns/__init__.py +0 -0
  266. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/patterns/context_manager.py +0 -0
  267. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/patterns/dynamic_facade.py +0 -0
  268. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/patterns/handler_factory.py +0 -0
  269. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/patterns/import_registry.py +0 -0
  270. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/patterns/object_pool.py +0 -0
  271. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/security/__init__.py +0 -0
  272. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/security/path_validator.py +0 -0
  273. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/security/resource_limits.py +0 -0
  274. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/structures/__init__.py +0 -0
  275. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/structures/circular_detector.py +0 -0
  276. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/structures/tree_walker.py +0 -0
  277. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/threading/__init__.py +0 -0
  278. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/threading/locks.py +0 -0
  279. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/threading/safe_factory.py +0 -0
  280. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/lazy_package/ARCHITECTURE.md +0 -0
  281. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/lazy_package/config.py +0 -0
  282. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/lazy_package/lazy_state.py +0 -0
  283. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/utils/paths.py +0 -0
  284. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/validation/data_validator.py +0 -0
  285. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/exonware/xwsystem/validation/type_safety.py +0 -0
  286. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/src/xwsystem_wrapper.py +0 -0
  287. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/README.md +0 -0
  288. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/caching/__init__.py +0 -0
  289. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/caching/conftest.py +0 -0
  290. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/caching/runner.py +0 -0
  291. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/caching/runner_out.md +0 -0
  292. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/caching/test_caching_standalone.py +0 -0
  293. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/caching/test_core_caching.py +0 -0
  294. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/caching/test_core_caching_installation.py +0 -0
  295. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/caching/test_core_xsystem_caching.py +0 -0
  296. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/cli/__init__.py +0 -0
  297. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/cli/runner.py +0 -0
  298. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/cli/test_core_xsystem_cli.py +0 -0
  299. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/config/__init__.py +0 -0
  300. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/config/runner.py +0 -0
  301. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/config/test_core_xsystem_config.py +0 -0
  302. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/core/__init__.py +0 -0
  303. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/core/runner.py +0 -0
  304. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/core/test_core_xsystem_core.py +0 -0
  305. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/enterprise/__init__.py +0 -0
  306. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/enterprise/runner.py +0 -0
  307. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/enterprise/test_core_xsystem_enterprise.py +0 -0
  308. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/http/__init__.py +0 -0
  309. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/http/runner.py +0 -0
  310. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/http/test_core_xsystem_http.py +0 -0
  311. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/io/__init__.py +0 -0
  312. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/io/runner.py +0 -0
  313. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/io/test_core_io_modular_imports.py +0 -0
  314. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/io/test_core_xsystem_io.py +0 -0
  315. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/ipc/__init__.py +0 -0
  316. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/ipc/runner.py +0 -0
  317. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/ipc/test_core_xsystem_ipc.py +0 -0
  318. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/ipc/test_core_xwsystem_ipc.py +0 -0
  319. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/monitoring/__init__.py +0 -0
  320. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/monitoring/runner.py +0 -0
  321. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/monitoring/test_core_xsystem_monitoring.py +0 -0
  322. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/patterns/__init__.py +0 -0
  323. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/patterns/runner.py +0 -0
  324. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/patterns/test_core_xsystem_patterns.py +0 -0
  325. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/performance/__init__.py +0 -0
  326. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/performance/runner.py +0 -0
  327. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/performance/test_core_xsystem_performance.py +0 -0
  328. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/plugins/__init__.py +0 -0
  329. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/plugins/runner.py +0 -0
  330. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/plugins/test_core_xsystem_plugins.py +0 -0
  331. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/runner.py +0 -0
  332. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/runtime/__init__.py +0 -0
  333. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/runtime/runner.py +0 -0
  334. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/runtime/test_core_xsystem_runtime.py +0 -0
  335. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/security/__init__.py +0 -0
  336. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/security/runner.py +0 -0
  337. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/security/test_core_xsystem_security.py +0 -0
  338. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/serialization/__init__.py +0 -0
  339. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/serialization/data/config.json +0 -0
  340. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/serialization/data/config.yaml +0 -0
  341. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/serialization/data/test_data.json +0 -0
  342. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/serialization/data/user_data.pkl +0 -0
  343. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/serialization/runner.py +0 -0
  344. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/serialization/test_core_serialization_fixed_features.py +0 -0
  345. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/serialization/test_core_xsystem_serialization.py +0 -0
  346. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/structures/__init__.py +0 -0
  347. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/structures/runner.py +0 -0
  348. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/structures/test_core_xsystem_structures.py +0 -0
  349. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/threading_tests/__init__.py +0 -0
  350. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/threading_tests/runner.py +0 -0
  351. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/threading_tests/test_core_xsystem_threading.py +0 -0
  352. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/utils/__init__.py +0 -0
  353. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/utils/runner.py +0 -0
  354. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/utils/test_auto_install.py +0 -0
  355. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/utils/test_core_lazy_loading.py +0 -0
  356. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/utils/test_core_xsystem_utils.py +0 -0
  357. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/utils/test_core_xwsystem_utils.py +0 -0
  358. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/validation/__init__.py +0 -0
  359. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/validation/runner.py +0 -0
  360. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/0.core/validation/test_core_xsystem_validation.py +0 -0
  361. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/caching/__init__.py +0 -0
  362. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/caching/conftest.py +0 -0
  363. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/caching/lru_cache_tests/__init__.py +0 -0
  364. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/caching/lru_cache_tests/test_lru_cache.py +0 -0
  365. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/caching/runner.py +0 -0
  366. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/caching/security_tests/__init__.py +0 -0
  367. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/caching/security_tests/test_secure_cache.py +0 -0
  368. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/caching_tests/__init__.py +0 -0
  369. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/caching_tests/conftest.py +0 -0
  370. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/caching_tests/runner.py +0 -0
  371. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/caching_tests/test_lfu_optimized.py +0 -0
  372. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/caching_tests/test_security.py +0 -0
  373. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/caching_tests/test_validation.py +0 -0
  374. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/codec_tests/__init__.py +0 -0
  375. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/codec_tests/conftest.py +0 -0
  376. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/codec_tests/runner.py +0 -0
  377. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/codec_tests/runner_out.md +0 -0
  378. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/codec_tests/test_universal_codec_registry.py +0 -0
  379. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/codec_tests/test_xwio_codec_integration.py +0 -0
  380. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/config_tests/__init__.py +0 -0
  381. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/config_tests/conftest.py +0 -0
  382. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/config_tests/test_logging_config.py +0 -0
  383. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/ALL_ISSUES_RESOLVED.md +0 -0
  384. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/COMPLETENESS_REPORT.md +0 -0
  385. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/CRITICAL_FIXES_APPLIED.md +0 -0
  386. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/FINAL_STATUS.md +0 -0
  387. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/FINAL_VICTORY.md +0 -0
  388. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/FIXES_COMPLETED.md +0 -0
  389. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/FIX_PLAN.md +0 -0
  390. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/README.md +0 -0
  391. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/RENAMING_COMPLETE.md +0 -0
  392. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/VICTORY_REPORT.md +0 -0
  393. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/__init__.py +0 -0
  394. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/archive_tests/__init__.py +0 -0
  395. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/archive_tests/test_archive_files.py +0 -0
  396. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/archive_tests/test_archive_format_metadata.py +0 -0
  397. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/archive_tests/test_archivers.py +0 -0
  398. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/archive_tests/test_base.py +0 -0
  399. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/codec_tests/__init__.py +0 -0
  400. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/codec_tests/test_base.py +0 -0
  401. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/codec_tests/test_contracts.py +0 -0
  402. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/codec_tests/test_registry.py +0 -0
  403. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/codec_tests/test_simple_examples.py +0 -0
  404. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/common_tests/__init__.py +0 -0
  405. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/common_tests/test_atomic.py +0 -0
  406. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/conftest.py +0 -0
  407. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/file_tests/__init__.py +0 -0
  408. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/filesystem_tests/__init__.py +0 -0
  409. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/folder_tests/__init__.py +0 -0
  410. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/runner.py +0 -0
  411. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/runner_out.md +0 -0
  412. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/serialization_tests/__init__.py +0 -0
  413. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/serialization_tests/formats_tests/__init__.py +0 -0
  414. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/__init__.py +0 -0
  415. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json.py +0 -0
  416. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json5.py +0 -0
  417. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_jsonlines.py +0 -0
  418. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_yaml.py +0 -0
  419. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/serialization_tests/test_base.py +0 -0
  420. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/serialization_tests/test_contracts.py +0 -0
  421. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/serialization_tests/test_registry.py +0 -0
  422. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/stream_tests/__init__.py +0 -0
  423. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/test_base.py +0 -0
  424. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/test_contracts.py +0 -0
  425. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/test_defs.py +0 -0
  426. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/test_errors.py +0 -0
  427. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/io_tests/test_facade.py +0 -0
  428. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/operations_tests/__init__.py +0 -0
  429. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/operations_tests/runner.py +0 -0
  430. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/operations_tests/runner_out.md +0 -0
  431. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/operations_tests/test_diff.py +0 -0
  432. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/operations_tests/test_merge.py +0 -0
  433. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/operations_tests/test_patch.py +0 -0
  434. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/patterns_tests/__init__.py +0 -0
  435. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/patterns_tests/conftest.py +0 -0
  436. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/patterns_tests/test_handler_factory.py +0 -0
  437. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/performance_tests/__init__.py +0 -0
  438. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/performance_tests/conftest.py +0 -0
  439. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/performance_tests/test_threading_performance.py +0 -0
  440. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/security_tests/conftest.py +0 -0
  441. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/security_tests/test_crypto_comprehensive.py +0 -0
  442. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/security_tests/test_input_validation.py +0 -0
  443. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/security_tests/test_path_validator.py +0 -0
  444. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/security_tests/test_security_edge_cases.py +0 -0
  445. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/__init__.py +0 -0
  446. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/conftest.py +0 -0
  447. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/multilingual_emoji_test.py +0 -0
  448. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/runner.py +0 -0
  449. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/test_all_serializers.py +0 -0
  450. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/test_bson_debug.py +0 -0
  451. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/test_complete_optimization.py +0 -0
  452. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/test_final_optimization.py +0 -0
  453. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/test_new_serializers.py +0 -0
  454. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/test_optimization_progress.py +0 -0
  455. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/test_optimization_simple.py +0 -0
  456. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/test_optimizations.py +0 -0
  457. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/test_serialization_basic_features.py +0 -0
  458. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/test_serialization_security_performance.py +0 -0
  459. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/test_serialization_worst_case_scenarios.py +0 -0
  460. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/test_universal_options.py +0 -0
  461. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/serialization_tests/test_xserialization.py +0 -0
  462. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/structures_tests/__init__.py +0 -0
  463. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/structures_tests/conftest.py +0 -0
  464. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/structures_tests/test_circular_detector.py +0 -0
  465. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/test_advanced_http.py +0 -0
  466. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/test_async_io.py +0 -0
  467. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/test_caching.py +0 -0
  468. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/test_core_components.py +0 -0
  469. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/test_direct_mapping.py +0 -0
  470. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/test_dynamic_mapping.py +0 -0
  471. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/test_ipc.py +0 -0
  472. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/test_standalone_mapping.py +0 -0
  473. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/threading_tests/__init__.py +0 -0
  474. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/threading_tests/conftest.py +0 -0
  475. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/threading_tests/debug_imports.py +0 -0
  476. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/threading_tests/test_threading_utilities.py +0 -0
  477. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/utils/__init__.py +0 -0
  478. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/utils/dt/__init__.py +0 -0
  479. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/utils/dt/runner.py +0 -0
  480. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/utils/dt/test_core_xwsystem_utls_dt.py +0 -0
  481. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/utils/runner.py +0 -0
  482. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/utils/runner_out.md +0 -0
  483. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/utils/test_lazy_hook_early_installation.py +0 -0
  484. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/1.unit/utils/test_lazy_mode_example.py +0 -0
  485. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/2.integration/caching/__init__.py +0 -0
  486. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/2.integration/caching/conftest.py +0 -0
  487. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/2.integration/caching/runner.py +0 -0
  488. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/2.integration/caching/test_end_to_end.py +0 -0
  489. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/2.integration/io_tests/__init__.py +0 -0
  490. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/2.integration/io_tests/test_end_to_end.py +0 -0
  491. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/2.integration/io_tests/test_format_conversion_workflow.py +0 -0
  492. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/2.integration/io_tests/test_io_codec_integration.py +0 -0
  493. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/2.integration/io_tests/test_lazy_hook_integration.py +0 -0
  494. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/2.integration/test_caching_integration.py +0 -0
  495. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/2.integration/test_module_interactions.py +0 -0
  496. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/2.integration/test_security_integration.py +0 -0
  497. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/3.advance/__init__.py +0 -0
  498. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/3.advance/caching/__init__.py +0 -0
  499. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/3.advance/caching/runner.py +0 -0
  500. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/3.advance/caching/test_performance.py +0 -0
  501. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/3.advance/caching/test_security.py +0 -0
  502. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/3.advance/conftest.py +0 -0
  503. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/3.advance/runner.py +0 -0
  504. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/3.advance/test_caching_extensibility.py +0 -0
  505. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/3.advance/test_caching_performance.py +0 -0
  506. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/3.advance/test_caching_security.py +0 -0
  507. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/README.md +0 -0
  508. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/__init__.py +0 -0
  509. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/conftest.py +0 -0
  510. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/performance/benchmark_suite.py +0 -0
  511. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/pytest.ini +0 -0
  512. {exonware_xwsystem-0.0.1.405 → exonware_xwsystem-0.0.1.406}/tests/runner.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: exonware-xwsystem
3
- Version: 0.0.1.405
3
+ Version: 0.0.1.406
4
4
  Summary: Enterprise-grade Python framework with AI-powered performance optimization, 24 serialization formats, military-grade security, automatic memory leak prevention, circuit breakers, and production monitoring - replaces 50+ dependencies
5
5
  Project-URL: Homepage, https://exonware.com
6
6
  Project-URL: Repository, https://github.com/exonware/xwsystem
@@ -78,7 +78,7 @@ Description-Content-Type: text/markdown
78
78
  **Company:** eXonware.com
79
79
  **Author:** Eng. Muhammad AlShehri
80
80
  **Email:** connect@exonware.com
81
- **Version:** 0.0.1.405
81
+ **Version:** 0.0.1.406
82
82
  **Updated:** 15-Nov-2025
83
83
 
84
84
  ## 🎯 **The Python Revolution Starts Here**
@@ -7,7 +7,7 @@
7
7
  **Company:** eXonware.com
8
8
  **Author:** Eng. Muhammad AlShehri
9
9
  **Email:** connect@exonware.com
10
- **Version:** 0.0.1.405
10
+ **Version:** 0.0.1.406
11
11
  **Updated:** 15-Nov-2025
12
12
 
13
13
  ## 🎯 **The Python Revolution Starts Here**
@@ -93,7 +93,7 @@ profile = "black"
93
93
  line_length = 88
94
94
 
95
95
  [tool.mypy]
96
- python_version = "0.0.1.405"
96
+ python_version = "0.0.1.406"
97
97
  strict = true
98
98
  warn_return_any = true
99
99
  warn_unused_configs = true
@@ -4,7 +4,7 @@ exonware package - Enterprise-grade Python framework ecosystem
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: September 04, 2025
9
9
 
10
10
  This is a namespace package allowing multiple exonware subpackages
@@ -15,7 +15,7 @@ to coexist (xwsystem, xwnode, xwdata, etc.)
15
15
  __path__ = __import__('pkgutil').extend_path(__path__, __name__)
16
16
 
17
17
  # Only import version if xwsystem is available (lazy import)
18
- # Root cause: Previous implementation used a hardcoded fallback ("0.0.0"),
18
+ # Root cause: Previous implementation used a hardcoded fallback placeholder,
19
19
  # which violates version centralization (GUIDE_DEV / GUIDE_TEST). Fix by
20
20
  # requiring the centralized version module to load successfully.
21
21
  try:
@@ -9,7 +9,7 @@ works across all exonware packages (xwsystem, xwnode, xwdata, etc.).
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.405
12
+ Version: 0.0.1.406
13
13
  Generation Date: 11-Nov-2025
14
14
  """
15
15
 
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: October 10, 2025
8
8
 
9
9
  XWSystem - Enterprise-grade Python framework with AI-powered performance optimization.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: 11-Nov-2025
8
8
 
9
9
  Early bootstrap for lazy mode - installs import hook before any imports occur.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: 01-Nov-2025
7
7
 
8
8
  XSystem Caching Package
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  Caching module base classes - abstract classes for caching functionality.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: 01-Nov-2025
8
8
 
9
9
  Bloom filter-enhanced cache for faster negative lookups.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  Cache Manager implementation - Placeholder.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: 01-Nov-2025
8
8
 
9
9
  Conditional eviction policies for caching.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  Caching protocol interfaces for XWSystem.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Advanced cache decorators with hooks and customization.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 07-Sep-2025
9
9
 
10
10
  Caching types and enums for XWSystem.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: October 26, 2025
8
8
 
9
9
  Disk cache implementation with pickle-based persistence.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: 01-Nov-2025
7
7
 
8
8
  Distributed cache implementations - Coming in v1.0.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  Caching module errors - exception classes for caching functionality.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Event system for caching module.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Pluggable eviction strategies for caching module.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Fluent API wrappers for caching module.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Cache integrity verification - Security Priority #1.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  LFU (Least Frequently Used) Cache implementation with thread-safety and async support.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Optimized O(1) LFU Cache implementation.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  LRU (Least Recently Used) Cache implementation with thread-safety and async support.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Memory-bounded cache implementations.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: 01-Nov-2025
8
8
 
9
9
  Metrics exporters for cache monitoring.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Observable cache implementations with event emission.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Pluggable cache with runtime-switchable eviction strategies.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Rate limiting for caching module - Security Priority #1.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: 01-Nov-2025
8
8
 
9
9
  Read-through and Write-through cache implementations.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Secure cache implementations with validation, integrity checks, and rate limiting.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: 01-Nov-2025
8
8
 
9
9
  Cache serialization utilities.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Statistics formatting utilities for caching module.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: 01-Nov-2025
8
8
 
9
9
  Tag-based cache invalidation.
@@ -7,7 +7,7 @@ Production-grade TTL caching for XSystem.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.405
10
+ Version: 0.0.1.406
11
11
  Generated: 2025-01-27
12
12
  """
13
13
 
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: October 26, 2025
8
8
 
9
9
  Two-tier cache implementation combining memory and disk caching.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Common utility functions for caching module.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Input validation for caching module - Security Priority #1.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 01-Nov-2025
9
9
 
10
10
  Cache warming utilities for preloading data.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: 01-Nov-2025
8
8
 
9
9
  Write-behind (lazy write) cache implementation.
@@ -7,7 +7,7 @@ Production-grade CLI utilities for XSystem.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.405
10
+ Version: 0.0.1.406
11
11
  Generated: 2025-01-27
12
12
  """
13
13
 
@@ -7,7 +7,7 @@ Production-grade CLI argument parsing for XWSystem.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.405
10
+ Version: 0.0.1.406
11
11
  Generated: 2025-01-27
12
12
  """
13
13
 
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  CLI module base classes - abstract classes for command-line interface functionality.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: September 05, 2025
7
7
 
8
8
  Colored terminal output utilities with cross-platform support.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  Console utilities for CLI operations.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  CLI module contracts - interfaces and enums for command-line interface functionality.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 07-Sep-2025
9
9
 
10
10
  CLI types and enums for XWSystem.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  CLI module errors - exception classes for command-line interface functionality.
@@ -7,7 +7,7 @@ Production-grade progress indicators for XSystem.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.405
10
+ Version: 0.0.1.406
11
11
  Generation Date: September 05, 2025
12
12
  """
13
13
 
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  Interactive prompts - Placeholder.
@@ -7,7 +7,7 @@ Production-grade table formatting for XWSystem.
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.405
10
+ Version: 0.0.1.406
11
11
  Generation Date: September 05, 2025
12
12
  """
13
13
 
@@ -6,7 +6,7 @@ This module provides configuration management for various xwsystem features.
6
6
  Author: Eng. Muhammad AlShehri
7
7
  Company: eXonware.com
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.405
9
+ Version: 0.0.1.406
10
10
  Generated: 2025-01-27
11
11
  """
12
12
 
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  Config module base classes - abstract classes for configuration functionality.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  Configuration protocol interfaces for XWSystem.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  Default configuration constants for XSystem framework.
@@ -4,7 +4,7 @@
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.405
7
+ Version: 0.0.1.406
8
8
  Generation Date: 07-Sep-2025
9
9
 
10
10
  Config types and enums for XWSystem.
@@ -3,7 +3,7 @@
3
3
  Company: eXonware.com
4
4
  Author: Eng. Muhammad AlShehri
5
5
  Email: connect@exonware.com
6
- Version: 0.0.1.405
6
+ Version: 0.0.1.406
7
7
  Generation Date: September 04, 2025
8
8
 
9
9
  Configuration module errors - exception classes for configuration functionality.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  Logging configuration for XSystem.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: September 05, 2025
7
7
 
8
8
  Logging configuration setup for XSystem.
@@ -2,7 +2,7 @@
2
2
  Company: eXonware.com
3
3
  Author: Eng. Muhammad AlShehri
4
4
  Email: connect@exonware.com
5
- Version: 0.0.1.405
5
+ Version: 0.0.1.406
6
6
  Generation Date: September 04, 2025
7
7
 
8
8
  Performance Configuration Management