hf-xet 1.5.0.dev0__tar.gz → 1.5.0.dev3__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 (303) hide show
  1. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/Cargo.toml +5 -8
  2. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/PKG-INFO +1 -1
  3. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/Cargo.lock +82 -184
  4. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/Cargo.toml +4 -4
  5. hf_xet-1.5.0.dev3/hf_xet/src/config.rs +241 -0
  6. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/headers.rs +0 -15
  7. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/legacy/functions.rs +32 -13
  8. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/legacy/progress_update.rs +72 -68
  9. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/legacy/runtime.rs +15 -22
  10. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/lib.rs +43 -8
  11. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/logging.rs +1 -1
  12. hf_xet-1.5.0.dev3/hf_xet/src/py_download_stream_group.rs +138 -0
  13. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/py_download_stream_handle.rs +18 -9
  14. hf_xet-1.5.0.dev3/hf_xet/src/py_file_download_group.rs +267 -0
  15. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/py_file_download_handle.rs +15 -9
  16. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/py_file_upload_handle.rs +17 -11
  17. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/py_stream_upload_handle.rs +60 -12
  18. hf_xet-1.5.0.dev3/hf_xet/src/py_upload_commit.rs +447 -0
  19. hf_xet-1.5.0.dev3/hf_xet/src/py_xet_session.rs +281 -0
  20. hf_xet-1.5.0.dev3/hf_xet/src/utils.rs +159 -0
  21. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/tests/conftest.py +11 -10
  22. hf_xet-1.5.0.dev3/hf_xet/tests/test_config.py +74 -0
  23. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/tests/test_file_download.py +40 -51
  24. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/tests/test_progress.py +21 -32
  25. hf_xet-1.5.0.dev3/hf_xet/tests/test_session.py +36 -0
  26. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/tests/test_stream_download.py +20 -33
  27. hf_xet-1.5.0.dev3/hf_xet/tests/test_upload_commit.py +254 -0
  28. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/Cargo.toml +2 -4
  29. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/adaptive_concurrency/controller.rs +59 -37
  30. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/adaptive_concurrency/rtt_prediction.rs +3 -3
  31. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/auth.rs +38 -25
  32. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/remote_client.rs +31 -21
  33. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/retry_wrapper.rs +39 -6
  34. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/client_testing_utils.rs +7 -1
  35. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/client_unit_testing.rs +3 -18
  36. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/deletion_controls.rs +26 -3
  37. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/deletion_unit_testing.rs +76 -0
  38. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/direct_access_client.rs +1 -4
  39. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/local_client.rs +677 -181
  40. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/local_server/latency_simulation.rs +1 -1
  41. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/local_server/main.rs +3 -1
  42. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/local_server/server.rs +60 -67
  43. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/local_server/simulation_control_client.rs +82 -11
  44. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/local_server/simulation_handlers.rs +68 -7
  45. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/local_server/simulation_types.rs +17 -0
  46. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/memory_client.rs +272 -67
  47. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/mod.rs +1 -1
  48. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/network_simulation/bandwidth_limit_router.rs +1 -1
  49. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/simulation_client.rs +3 -3
  50. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/simulation_server.rs +23 -12
  51. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/chunk_cache/bin/analysis.rs +9 -4
  52. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/chunk_cache/cache_manager.rs +7 -5
  53. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/chunk_cache/disk/test_utils.rs +1 -1
  54. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/chunk_cache/disk.rs +60 -47
  55. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/chunk_cache/mod.rs +4 -4
  56. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/common/http_client.rs +83 -75
  57. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/hub_client/client.rs +10 -2
  58. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/Cargo.toml +3 -3
  59. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/benches/bg_split_regroup_bench.rs +1 -1
  60. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/benches/compression_bench.rs +1 -1
  61. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/merklehash/data_hash.rs +1 -1
  62. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/merklehash/merkle_hash_subtree.rs +7 -7
  63. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/merklehash/passthrough_hashmap.rs +4 -4
  64. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/mod.rs +2 -2
  65. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/session_directory.rs +21 -10
  66. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/shard_benchmark.rs +12 -5
  67. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/shard_file_handle.rs +46 -33
  68. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/shard_file_manager.rs +201 -98
  69. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/shard_format.rs +1 -1
  70. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/shard_in_memory.rs +4 -2
  71. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/streaming_shard.rs +1 -1
  72. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/xorb_object/byte_grouping/bg4.rs +1 -1
  73. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/xorb_object/byte_grouping/bg4_prediction.rs +1 -1
  74. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/xorb_object/byte_grouping/compression_stats/collect_compression_stats.rs +1 -1
  75. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/xorb_object/compression_scheme.rs +1 -1
  76. hf_xet-1.5.0.dev3/xet_core_structures/src/xorb_object/constants.rs +29 -0
  77. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/xorb_object/xorb_chunk_format/deserialize_async.rs +1 -1
  78. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/xorb_object/xorb_object_format.rs +32 -16
  79. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/Cargo.toml +4 -4
  80. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/benches/reconstruction_bench.rs +9 -3
  81. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/deduplication/chunking.rs +1 -1
  82. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/deduplication/defrag_prevention.rs +17 -17
  83. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/deduplication/file_deduplication.rs +30 -6
  84. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/data_writer/sequential_writer.rs +69 -31
  85. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/file_reconstructor.rs +237 -182
  86. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/reconstruction_terms/file_term.rs +97 -84
  87. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/reconstruction_terms/manager.rs +6 -1
  88. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/reconstruction_terms/retrieval_urls.rs +26 -9
  89. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/reconstruction_terms/xorb_block.rs +5 -3
  90. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/bin/example.rs +10 -8
  91. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/bin/xtool.rs +22 -12
  92. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/configurations.rs +35 -27
  93. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/data_client.rs +42 -27
  94. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/deduplication_interface.rs +1 -1
  95. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/file_cleaner.rs +10 -6
  96. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/file_download_session.rs +104 -102
  97. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/file_upload_session.rs +82 -53
  98. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/migration_tool/migrate.rs +9 -5
  99. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/mod.rs +3 -0
  100. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/remote_client_interface.rs +6 -4
  101. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/sha256.rs +13 -8
  102. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/shard_interface.rs +20 -13
  103. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/test_utils.rs +22 -9
  104. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/progress_tracking/mod.rs +0 -1
  105. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/progress_tracking/progress_types.rs +24 -24
  106. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/progress_tracking/upload_tracking.rs +15 -15
  107. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/Cargo.toml +5 -5
  108. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/examples/example.rs +1 -5
  109. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/examples/example_sync.rs +1 -5
  110. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/error.rs +2 -2
  111. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/legacy/data_client.rs +13 -5
  112. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/legacy/mod.rs +2 -1
  113. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/legacy/progress_tracking/callback_bridge.rs +20 -19
  114. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/legacy/progress_tracking/mod.rs +2 -2
  115. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/legacy/progress_tracking/progress_verification_wrapper.rs +4 -4
  116. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/lib.rs +9 -1
  117. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/xet_session/common.rs +5 -3
  118. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/xet_session/download_stream_group.rs +10 -10
  119. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/xet_session/download_stream_handle.rs +24 -15
  120. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/xet_session/file_download_group.rs +58 -20
  121. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/xet_session/file_download_handle.rs +8 -7
  122. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/xet_session/mod.rs +2 -1
  123. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/xet_session/session.rs +61 -88
  124. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/xet_session/upload_commit.rs +53 -25
  125. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/xet_session/upload_file_handle.rs +4 -3
  126. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/xet_session/upload_stream_handle.rs +4 -3
  127. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/tests/test_legacy_data_client.rs +48 -16
  128. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/tests/test_xet_session.rs +19 -20
  129. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/mod.rs +0 -3
  130. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/python.rs +22 -2
  131. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/xet_config.rs +4 -134
  132. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/core/common.rs +87 -33
  133. hf_xet-1.5.0.dev3/xet_runtime/src/core/context.rs +94 -0
  134. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/core/mod.rs +3 -5
  135. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/core/runtime.rs +264 -369
  136. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/file_utils/safe_file_creator.rs +1 -1
  137. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/lib.rs +0 -1
  138. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/logging/config.rs +14 -18
  139. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/logging/init.rs +1 -1
  140. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/configuration_utils.rs +1 -1
  141. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/singleflight.rs +10 -9
  142. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/tests/bin/log_test_executable.rs +1 -1
  143. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/tests/integration_tests.rs +7 -3
  144. hf_xet-1.5.0.dev0/hf_xet/src/py_download_stream_group.rs +0 -226
  145. hf_xet-1.5.0.dev0/hf_xet/src/py_file_download_group.rs +0 -376
  146. hf_xet-1.5.0.dev0/hf_xet/src/py_upload_commit.rs +0 -515
  147. hf_xet-1.5.0.dev0/hf_xet/src/py_xet_session.rs +0 -117
  148. hf_xet-1.5.0.dev0/hf_xet/tests/test_session.py +0 -36
  149. hf_xet-1.5.0.dev0/hf_xet/tests/test_upload_commit.py +0 -222
  150. hf_xet-1.5.0.dev0/xet_core_structures/src/xorb_object/constants.rs +0 -63
  151. hf_xet-1.5.0.dev0/xet_runtime/src/core/config.rs +0 -29
  152. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/README.md +0 -0
  153. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/.gitignore +0 -0
  154. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/LICENSE +0 -0
  155. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/README.md +0 -0
  156. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/legacy/mod.rs +0 -0
  157. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/legacy/token_refresh.rs +0 -0
  158. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/legacy/types.rs +0 -0
  159. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/hf_xet/src/profiling.rs +0 -0
  160. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/pyproject.toml +0 -0
  161. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/README.md +0 -0
  162. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/adaptive_concurrency/exp_weighted_olr.rs +0 -0
  163. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/adaptive_concurrency/mod.rs +0 -0
  164. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/exports.rs +0 -0
  165. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/interface.rs +0 -0
  166. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/mod.rs +0 -0
  167. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/multipart.rs +0 -0
  168. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/progress_tracked_streams.rs +0 -0
  169. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/local_server/handlers.rs +0 -0
  170. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/local_server/mod.rs +0 -0
  171. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/network_simulation/mod.rs +0 -0
  172. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/network_simulation/network_profile.rs +0 -0
  173. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/random_xorb.rs +0 -0
  174. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/socket_proxy.rs +0 -0
  175. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_client/simulation/xorb_utils.rs +0 -0
  176. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_types/key.rs +0 -0
  177. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/cas_types/mod.rs +0 -0
  178. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/chunk_cache/disk/cache_file_header.rs +0 -0
  179. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/chunk_cache/disk/cache_item.rs +0 -0
  180. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/chunk_cache/error.rs +0 -0
  181. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/common/auth/basics.rs +0 -0
  182. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/common/auth/interface.rs +0 -0
  183. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/common/auth.rs +0 -0
  184. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/common/mod.rs +0 -0
  185. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/error.rs +0 -0
  186. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/hub_client/mod.rs +0 -0
  187. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/hub_client/types.rs +0 -0
  188. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/src/lib.rs +0 -0
  189. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_client/tests/test_shard_upload_timeout.rs +0 -0
  190. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/README.md +0 -0
  191. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/data_structures/mod.rs +0 -0
  192. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/error.rs +0 -0
  193. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/lib.rs +0 -0
  194. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/merklehash/aggregated_hashes.rs +0 -0
  195. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/merklehash/mod.rs +0 -0
  196. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/merklehash/passthrough_hasher.rs +0 -0
  197. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/chunk_verification.rs +0 -0
  198. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/constants.rs +0 -0
  199. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/file_structs.rs +0 -0
  200. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/interpolation_search.rs +0 -0
  201. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/set_operations.rs +0 -0
  202. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/shard_file.rs +0 -0
  203. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/shard_file_reconstructor.rs +0 -0
  204. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/utils.rs +0 -0
  205. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/metadata_shard/xorb_structs.rs +0 -0
  206. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/utils/exp_weighted_moving_avg.rs +0 -0
  207. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/utils/mod.rs +0 -0
  208. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/utils/serialization_utils.rs +0 -0
  209. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/xorb_object/byte_grouping/bg4_prediction_benchmark.rs +0 -0
  210. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/xorb_object/byte_grouping/compression_stats/compression_prediction_tests.py +0 -0
  211. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/xorb_object/byte_grouping/mod.rs +0 -0
  212. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/xorb_object/chunk.rs +0 -0
  213. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/xorb_object/mod.rs +0 -0
  214. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/xorb_object/raw_xorb_data.rs +0 -0
  215. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_core_structures/src/xorb_object/xorb_chunk_format.rs +0 -0
  216. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/README.md +0 -0
  217. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/examples/chunk/main.rs +0 -0
  218. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/examples/hash/main.rs +0 -0
  219. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/examples/xorb-check/main.rs +0 -0
  220. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/deduplication/data_aggregator.rs +0 -0
  221. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/deduplication/dedup_metrics.rs +0 -0
  222. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/deduplication/interface.rs +0 -0
  223. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/deduplication/mod.rs +0 -0
  224. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/deduplication/parallel chunking.lyx +0 -0
  225. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/deduplication/parallel chunking.pdf +0 -0
  226. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/error.rs +0 -0
  227. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/data_writer/data_writer.rs +0 -0
  228. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/data_writer/download_stream.rs +0 -0
  229. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/data_writer/mod.rs +0 -0
  230. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/data_writer/unordered_download_stream.rs +0 -0
  231. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/data_writer/unordered_writer.rs +0 -0
  232. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/error.rs +0 -0
  233. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/mod.rs +0 -0
  234. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/reconstruction_terms/mod.rs +0 -0
  235. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/file_reconstruction/run_state.rs +0 -0
  236. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/lib.rs +0 -0
  237. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/constants.rs +0 -0
  238. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/migration_tool/hub_client_token_refresher.rs +0 -0
  239. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/migration_tool/mod.rs +0 -0
  240. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/processing/xet_file.rs +0 -0
  241. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/src/progress_tracking/speed_tracker.rs +0 -0
  242. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/tests/integration_tests/initialize.sh +0 -0
  243. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/tests/integration_tests/test_basic_clean_smudge.sh +0 -0
  244. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/tests/integration_tests.rs +0 -0
  245. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/tests/test_clean_smudge.rs +0 -0
  246. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/tests/test_clean_smudge_multirange.rs +0 -0
  247. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/tests/test_full_file_download.rs +0 -0
  248. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/tests/test_range_downloads.rs +0 -0
  249. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/tests/test_session_resume.rs +0 -0
  250. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_data/tests/test_unordered_download.rs +0 -0
  251. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/README.md +0 -0
  252. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/xet_session/auth_group_builder.rs +0 -0
  253. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/xet_session/errors.rs +0 -0
  254. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_pkg/src/xet_session/task_runtime.rs +0 -0
  255. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/Cargo.toml +0 -0
  256. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/README.md +0 -0
  257. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/aliases.rs +0 -0
  258. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/error.rs +0 -0
  259. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/groups/chunk_cache.rs +0 -0
  260. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/groups/client.rs +0 -0
  261. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/groups/data.rs +0 -0
  262. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/groups/deduplication.rs +0 -0
  263. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/groups/log.rs +0 -0
  264. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/groups/mod.rs +0 -0
  265. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/groups/reconstruction.rs +0 -0
  266. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/groups/session.rs +0 -0
  267. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/groups/shard.rs +0 -0
  268. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/groups/system_monitor.rs +0 -0
  269. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/groups/xorb.rs +0 -0
  270. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/config/macros.rs +0 -0
  271. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/core/cache_dir.rs +0 -0
  272. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/core/exports.rs +0 -0
  273. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/core/file_handle_limits.rs +0 -0
  274. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/core/par_utils.rs +0 -0
  275. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/core/sync_primatives.rs +0 -0
  276. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/error.rs +0 -0
  277. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/error_printer/mod.rs +0 -0
  278. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/fd_diagnostics.rs +0 -0
  279. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/file_utils/file_metadata.rs +0 -0
  280. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/file_utils/mod.rs +0 -0
  281. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/file_utils/privilege_context.rs +0 -0
  282. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/logging/constants.rs +0 -0
  283. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/logging/mod.rs +0 -0
  284. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/logging/system_monitor.rs +0 -0
  285. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/adjustable_semaphore.rs +0 -0
  286. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/async_iterator.rs +0 -0
  287. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/async_read.rs +0 -0
  288. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/byte_size.rs +0 -0
  289. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/config_enum.rs +0 -0
  290. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/errors.rs +0 -0
  291. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/file_paths.rs +0 -0
  292. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/guards.rs +0 -0
  293. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/limited_joinset.rs +0 -0
  294. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/mod.rs +0 -0
  295. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/output_bytes.rs +0 -0
  296. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/pipe.rs +0 -0
  297. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/rw_task_lock.rs +0 -0
  298. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/src/utils/unique_id.rs +0 -0
  299. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/tests/config_env_test.rs +0 -0
  300. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/tests/config_values_test.rs +0 -0
  301. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/tests/primary_config_test.rs +0 -0
  302. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/tests/test_error.rs +0 -0
  303. {hf_xet-1.5.0.dev0 → hf_xet-1.5.0.dev3}/xet_runtime/tests/test_option.rs +0 -0
@@ -15,7 +15,7 @@ members = [
15
15
  exclude = ["simulation/chunk_cache_bench", "hf_xet", "wasm/hf_xet_wasm", "wasm/hf_xet_thin_wasm"]
16
16
 
17
17
  [workspace.package]
18
- version = "1.5.1"
18
+ version = "1.5.2"
19
19
  edition = "2024"
20
20
  license = "Apache-2.0"
21
21
  homepage = "https://github.com/huggingface/xet-core"
@@ -40,7 +40,7 @@ async-std = "1"
40
40
  async-trait = "0.1"
41
41
  axum = "0.8"
42
42
  base64 = "0.22"
43
- bincode = "1.3"
43
+ postcard = { version = "1.1", features = ["alloc"] }
44
44
  bitflags = { version = "2.10", features = ["serde"] }
45
45
  blake3 = "1.8"
46
46
  bytemuck = "1"
@@ -53,7 +53,6 @@ countio = { version = "0.3", features = ["futures"] }
53
53
  crc32fast = "1.5"
54
54
  csv = "1"
55
55
  ctor = "0.6"
56
- derivative = "2.2"
57
56
  dirs = "6.0"
58
57
  futures = "0.3"
59
58
  humantime = "2.1"
@@ -79,8 +78,8 @@ more-asserts = "0.3"
79
78
  oneshot = "0.1"
80
79
  pin-project = "1"
81
80
  pyo3 = { version = "0.26", features = ["abi3-py37", "multiple-pymethods"] }
82
- rand = "0.9"
83
- rand_chacha = "0.9"
81
+ rand = "0.10"
82
+ rand_chacha = "0.10"
84
83
  regex = "1"
85
84
  reqwest = { version = "0.13.1", features = [
86
85
  "json",
@@ -89,7 +88,6 @@ reqwest = { version = "0.13.1", features = [
89
88
  "socks",
90
89
  ], default-features = false }
91
90
  reqwest-middleware = "0.5"
92
- reqwest-retry = "0.9"
93
91
  rust-netrc = "0.1"
94
92
  safe-transmute = "0.11"
95
93
  serde = { version = "1", features = ["derive"] }
@@ -111,7 +109,6 @@ tracing = "0.1"
111
109
  tracing-appender = "0.2"
112
110
  tracing-log = "0.2"
113
111
  tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
114
- ulid = "1.2"
115
112
  url = "2.5"
116
113
  urlencoding = "2.1"
117
114
  uuid = "1"
@@ -132,7 +129,7 @@ winapi = { version = "0.3", features = [
132
129
  approx = "0.5"
133
130
  httpmock = "0.8"
134
131
  rand_core = "0.6"
135
- rand_distr = "0.5"
132
+ rand_distr = "0.6"
136
133
  russh = "0.55"
137
134
  serial_test = "3"
138
135
  tracing-test = { version = "0.2", features = ["no-env-filter"] }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hf-xet
3
- Version: 1.5.0.dev0
3
+ Version: 1.5.0.dev3
4
4
  Classifier: Development Status :: 5 - Production/Stable
5
5
  Classifier: License :: OSI Approved :: Apache Software License
6
6
  Classifier: Programming Language :: Rust