statsig-python-core 0.15.0__tar.gz → 0.15.1__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.
Potentially problematic release.
This version of statsig-python-core might be problematic. Click here for more details.
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/Cargo.lock +148 -109
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/Cargo.toml +1 -1
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/PKG-INFO +1 -1
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/py_src/statsig_python_core/statsig_python_core.pyi +5 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/py_src/statsig_python_core/statsig_python_core.pyi +5 -0
- statsig_python_core-0.15.1/statsig-pyo3/src/interned_store_py.rs +28 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/lib.rs +2 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/Cargo.toml +3 -1
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/__tests__/interned_string_tests.rs +3 -3
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/__tests__/dynamic_returnable_tests.rs +5 -32
- statsig_python_core-0.15.1/statsig-rust/src/evaluation/dynamic_returnable.rs +149 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/dynamic_string.rs +15 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/evaluator.rs +25 -5
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/evaluator_result.rs +1 -1
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/evaluator_value.rs +70 -18
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/gcir/gcir_formatter.rs +1 -1
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/gcir/gcir_process_iter.rs +2 -2
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/interned_string.rs +40 -59
- statsig_python_core-0.15.1/statsig-rust/src/interned_values/__tests__/interned_store_eval_value_tests.rs +93 -0
- statsig_python_core-0.15.1/statsig-rust/src/interned_values/__tests__/interned_store_returnable_tests.rs +74 -0
- statsig_python_core-0.15.1/statsig-rust/src/interned_values/__tests__/interned_store_string_tests.rs +85 -0
- statsig_python_core-0.15.1/statsig-rust/src/interned_values/__tests__/mod.rs +3 -0
- statsig_python_core-0.15.1/statsig-rust/src/interned_values/interned_store.rs +501 -0
- statsig_python_core-0.15.1/statsig-rust/src/interned_values/mod.rs +6 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/lib.rs +1 -1
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/override_adapter/statsig_local_override_adapter.rs +21 -4
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/persistent_storage/persistent_values_manager.rs +1 -1
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/spec_store.rs +3 -3
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/__tests__/proto_specs_unknown_tests.rs +9 -8
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/proto_specs.rs +29 -4
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/spec_types.rs +0 -4
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/specs_hash_map.rs +18 -12
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/statsig.rs +20 -3
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/statsig_err.rs +3 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/statsig_metadata.rs +1 -1
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/statsig_types.rs +1 -6
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/override_adapter_tests.rs +47 -2
- statsig_python_core-0.15.0/statsig-rust/src/evaluation/dynamic_returnable.rs +0 -124
- statsig_python_core-0.15.0/statsig-rust/src/interned_value_store.rs +0 -104
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/py_src/statsig_python_core/__init__.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/py_src/statsig_python_core/data_store.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/py_src/statsig_python_core/error_boundary.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/py_src/statsig_python_core/observability_client.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/py_src/statsig_python_core/output_logger_provider.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/py_src/statsig_python_core/persistent_storage.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/py_src/statsig_python_core/py.typed +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/py_src/statsig_python_core/requirements.txt +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/py_src/statsig_python_core/statsig.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/py_src/statsig_python_core/statsig_types.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/pyproject.toml +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-grpc/Cargo.toml +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-grpc/README.md +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-grpc/build.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-grpc/src/lib.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-grpc/src/mock_forward_proxy.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-grpc/src/protos/statsig_forward_proxy.proto +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-grpc/src/statsig_forward_proxy.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-grpc/src/statsig_grpc_client.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-grpc/src/statsig_grpc_err.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/.github/workflows/CI.yml +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/.gitignore +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/Cargo.toml +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/README.md +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/py_src/statsig_python_core/__init__.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/py_src/statsig_python_core/data_store.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/py_src/statsig_python_core/error_boundary.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/py_src/statsig_python_core/observability_client.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/py_src/statsig_python_core/output_logger_provider.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/py_src/statsig_python_core/persistent_storage.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/py_src/statsig_python_core/py.typed +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/py_src/statsig_python_core/requirements.txt +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/py_src/statsig_python_core/statsig.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/py_src/statsig_python_core/statsig_types.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/bin/stub_gen.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/data_store_base_py.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/observability_client_base_py.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/output_logger_provider_base_py.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/pyo_utils.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/safe_gil.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/statsig_base_py.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/statsig_metadata_py.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/statsig_options_py.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/statsig_persistent_storage_override_adapter_py.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/statsig_types_py.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/statsig_user_py.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/unit_id_py.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/src/valid_primitives_py.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/fork_runner.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/mock_scrapi.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/shutdown_sub_proc.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_data_store.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_error_boundary.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_experiment_serialization.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_exposure_logging.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_feature_gate_serialization.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_forking.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_get_dynamic_config.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_initialize_with_details.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_layer_serialization.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_observability_client.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_output_logger_provider.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_override_adapter.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_performance.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_shared_statsig.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_shutdown.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_statsig.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_statsig_options.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_statsig_user.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_statsig_user_json_serialization.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_statsig_user_pickle.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/test_user_exposure_e2e.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-pyo3/tests/utils.py +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/build.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/resources/ip_supalite.table +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/resources/ua_parser_regex.yaml +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/resources/ua_parser_regex_lite.yaml +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/__tests__/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/__tests__/spec_store_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/compression/compression_helper.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/compression/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/console_capture/console_capture_handler.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/console_capture/console_capture_instances.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/console_capture/console_capture_options.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/console_capture/console_log_line_levels.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/console_capture/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/data_store_interface.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/dcs_str.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/__tests__/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/cmab_evaluator.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/comparisons/compare_arrays.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/comparisons/compare_numbers.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/comparisons/compare_str_with_regex.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/comparisons/compare_strings_in_array.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/comparisons/compare_time.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/comparisons/compare_versions.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/comparisons/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/country_lookup.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/dynamic_value.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/evaluation_details.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/evaluation_types.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/evaluation_types_initialize_v2.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/evaluation_types_v2.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/evaluator_context.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/get_unit_id.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/secondary_exposure_key.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/user_agent_parsing/first_party_ua_parser.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/user_agent_parsing/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/__tests__/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/__tests__/test_helpers.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/__tests__/test_tokenizer.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/__tests__/test_ua_parser_browser.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/__tests__/test_ua_parser_os.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/tokenizer.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/ua_parser.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/window_iter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/user_agent_parsing/third_party_ua_parser.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/evaluation/user_agent_parsing/ua_parser.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_emitter/statsig_event_emitter_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/event_logger.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/event_logger_constants.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/event_logger_ops_stats.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/event_queue/batch.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/event_queue/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/event_queue/queue.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/event_queue/queued_config_expo.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/event_queue/queued_event.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/event_queue/queued_experiment_expo.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/event_queue/queued_expo.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/event_queue/queued_gate_expo.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/event_queue/queued_layer_param_expo.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/event_queue/queued_passthrough.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/exposure_sampling.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/exposure_utils.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/flush_interval.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/flush_type.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/statsig_event.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging/statsig_event_internal.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging_adapter/event_logging_adapter_trait.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging_adapter/log_event_payload.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging_adapter/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging_adapter/statsig_http_event_logging_adapter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/event_logging_adapter/statsig_local_file_event_logging_adapter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/gcir/dynamic_configs_processor.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/gcir/feature_gates_processor.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/gcir/gcir_options.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/gcir/layer_configs_processor.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/gcir/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/gcir/param_stores_processor.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/gcir/stringify_sec_exposures.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/gcir/target_app_id_utils.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/global_configs.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/hashing/ahash.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/hashing/djb2.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/hashing/hash_util.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/hashing/memo_sha_256.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/hashing/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/id_lists_adapter/id_list.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/id_lists_adapter/id_lists_adapter_trait.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/id_lists_adapter/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/id_lists_adapter/statsig_http_id_lists_adapter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/init_details.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/initialize_evaluations_response.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/initialize_response.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/initialize_v2_response.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/instance_registry.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/logging_utils.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/macros.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/networking/__tests__/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/networking/__tests__/response_data_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/networking/http_types.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/networking/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/networking/network_client.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/networking/network_error.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/networking/providers/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/networking/providers/net_provider_global.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/networking/providers/net_provider_noop.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/networking/providers/net_provider_reqwest.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/networking/proxy_config.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/observability/console_capture_observer.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/observability/diagnostics_observer.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/observability/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/observability/observability_client_adapter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/observability/ops_stats.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/observability/sdk_errors_observer.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/output_logger.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/override_adapter/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/override_adapter/override_adapter_trait.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/persistent_storage/__tests__/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/persistent_storage/__tests__/sticky_values_serialization_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/persistent_storage/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/persistent_storage/persistent_storage_trait.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/sdk_diagnostics/diagnostics.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/sdk_diagnostics/diagnostics_utils.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/sdk_diagnostics/marker.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/sdk_diagnostics/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/sdk_event_emitter/event_emitter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/sdk_event_emitter/event_emitter_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/sdk_event_emitter/event_types.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/sdk_event_emitter/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_adapter/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_adapter/specs_adapter_trait.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_adapter/statsig_bootstrap_specs_adapter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_adapter/statsig_customized_specs_adapter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_adapter/statsig_data_store_specs_adapter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_adapter/statsig_grpc_specs_adapter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_adapter/statsig_http_specs_adapter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_adapter/statsig_local_file_specs_adapter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/__tests__/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/__tests__/proto_specs_syncing_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/__tests__/proto_specs_vs_json_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/__tests__/proto_stream_reader_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/cmab_types.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/explicit_params.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/param_store_types.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/proto_stream_reader.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/specs_response/statsig_config_specs.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/statsig_core_api_options.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/statsig_global.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/statsig_options.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/statsig_runtime.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/statsig_type_factories.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/statsig_types_raw.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/user/into_optional.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/user/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/user/statsig_user.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/user/statsig_user_builder.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/user/statsig_user_internal.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/user/statsig_user_loggable.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/user/unit_id.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/user/user_data.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/src/utils/mod.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/check_gate_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/customized_specs_adapter_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/big_number_dcs.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/check_gate_perf_dcs.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/company_id_list +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/dcs_missing_gates.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/dcs_with_checksum.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/dcs_with_sampling.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/dcs_with_sdk_configs.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/demo_proj_dcs.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/demo_proj_dcs.pb.br +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/eval_proj_dcs.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/eval_proj_dcs.pb.br +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/get_id_lists.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/perf_proj_dcs.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/perf_proj_dcs.pb.br +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/shared_dict_dict_only.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/shared_dict_original_dcs.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/shared_dict_response_uncompressed.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/shared_dict_response_with_dict.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/shared_dict_response_without_dict.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/test_must_pass_user_agents.txt +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/test_user_agents.txt +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/ua_string_cases.json +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data/unknown_enum.pb.br +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/data_store_lock_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/direct_gcir_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/dynamic_string_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/dynamic_value_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/evaluation_details_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/evaluator_value_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/event_logger_failing_flush_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/event_logger_flush_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/event_logger_high_qps_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/event_logger_usage_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/expected_evaluation_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/exposure_sampling_key_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/exposure_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/flushing_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/gate_inversion_eval_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/gcir_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/global_configs_test.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/grpc_specs_adapter_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/hash_util_evaluation_hash_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/http_specs_adapter_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/initialize_timeout_test.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/instance_registry_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/layer_serialization_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/list_methods_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/network_client_streaming_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/network_client_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/network_failure_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/observability_client_usage_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/output_logger_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/perf_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/proto_specs_usage_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/spec_types_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_disable_network_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_environment_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_event_emitter_usage_test.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_global_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_local_file_event_logging_adapter_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_local_file_specs_adapter_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_options_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_shared_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_user_builder_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_user_field_accessor_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_user_internal_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_user_loggable_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/statsig_user_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/syncing_network_failure_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/typed_getters_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/ua_parser_util_test.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/user_agent_tests_first_party.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/user_json_tests.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/utils/helpers.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/utils/mock_data_store.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/utils/mock_event_logging_adapter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/utils/mock_log_provider.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/utils/mock_observability_client.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/utils/mock_scrapi.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/utils/mock_specs_adapter.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/utils/mock_specs_listener.rs +0 -0
- {statsig_python_core-0.15.0 → statsig_python_core-0.15.1}/statsig-rust/tests/utils/mod.rs +0 -0
|
@@ -54,12 +54,6 @@ dependencies = [
|
|
|
54
54
|
"alloc-no-stdlib",
|
|
55
55
|
]
|
|
56
56
|
|
|
57
|
-
[[package]]
|
|
58
|
-
name = "android-tzdata"
|
|
59
|
-
version = "0.1.1"
|
|
60
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
61
|
-
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
62
|
-
|
|
63
57
|
[[package]]
|
|
64
58
|
name = "android_system_properties"
|
|
65
59
|
version = "0.1.5"
|
|
@@ -71,9 +65,9 @@ dependencies = [
|
|
|
71
65
|
|
|
72
66
|
[[package]]
|
|
73
67
|
name = "anyhow"
|
|
74
|
-
version = "1.0.
|
|
68
|
+
version = "1.0.100"
|
|
75
69
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
-
checksum = "
|
|
70
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
77
71
|
|
|
78
72
|
[[package]]
|
|
79
73
|
name = "arc-swap"
|
|
@@ -124,7 +118,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
|
124
118
|
dependencies = [
|
|
125
119
|
"proc-macro2",
|
|
126
120
|
"quote",
|
|
127
|
-
"syn 2.0.
|
|
121
|
+
"syn 2.0.114",
|
|
128
122
|
]
|
|
129
123
|
|
|
130
124
|
[[package]]
|
|
@@ -135,7 +129,7 @@ checksum = "644dd749086bf3771a2fbc5f256fdb982d53f011c7d5d560304eafeecebce79d"
|
|
|
135
129
|
dependencies = [
|
|
136
130
|
"proc-macro2",
|
|
137
131
|
"quote",
|
|
138
|
-
"syn 2.0.
|
|
132
|
+
"syn 2.0.114",
|
|
139
133
|
]
|
|
140
134
|
|
|
141
135
|
[[package]]
|
|
@@ -418,17 +412,16 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
418
412
|
|
|
419
413
|
[[package]]
|
|
420
414
|
name = "chrono"
|
|
421
|
-
version = "0.4.
|
|
415
|
+
version = "0.4.43"
|
|
422
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
-
checksum = "
|
|
417
|
+
checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
|
|
424
418
|
dependencies = [
|
|
425
|
-
"android-tzdata",
|
|
426
419
|
"iana-time-zone",
|
|
427
420
|
"js-sys",
|
|
428
421
|
"num-traits",
|
|
429
422
|
"serde",
|
|
430
423
|
"wasm-bindgen",
|
|
431
|
-
"windows-link 0.
|
|
424
|
+
"windows-link 0.2.1",
|
|
432
425
|
]
|
|
433
426
|
|
|
434
427
|
[[package]]
|
|
@@ -537,7 +530,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
537
530
|
checksum = "c26b9831049b947d154bba920e4124053def72447be6fb106a96f483874b482a"
|
|
538
531
|
dependencies = [
|
|
539
532
|
"regex",
|
|
540
|
-
"syn 2.0.
|
|
533
|
+
"syn 2.0.114",
|
|
541
534
|
]
|
|
542
535
|
|
|
543
536
|
[[package]]
|
|
@@ -547,7 +540,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
547
540
|
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
548
541
|
dependencies = [
|
|
549
542
|
"quote",
|
|
550
|
-
"syn 2.0.
|
|
543
|
+
"syn 2.0.114",
|
|
551
544
|
]
|
|
552
545
|
|
|
553
546
|
[[package]]
|
|
@@ -571,7 +564,7 @@ dependencies = [
|
|
|
571
564
|
"proc-macro2",
|
|
572
565
|
"quote",
|
|
573
566
|
"strsim 0.11.1",
|
|
574
|
-
"syn 2.0.
|
|
567
|
+
"syn 2.0.114",
|
|
575
568
|
]
|
|
576
569
|
|
|
577
570
|
[[package]]
|
|
@@ -582,7 +575,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
|
582
575
|
dependencies = [
|
|
583
576
|
"darling_core",
|
|
584
577
|
"quote",
|
|
585
|
-
"syn 2.0.
|
|
578
|
+
"syn 2.0.114",
|
|
586
579
|
]
|
|
587
580
|
|
|
588
581
|
[[package]]
|
|
@@ -637,7 +630,7 @@ dependencies = [
|
|
|
637
630
|
"proc-macro2",
|
|
638
631
|
"quote",
|
|
639
632
|
"rustc_version",
|
|
640
|
-
"syn 2.0.
|
|
633
|
+
"syn 2.0.114",
|
|
641
634
|
]
|
|
642
635
|
|
|
643
636
|
[[package]]
|
|
@@ -658,14 +651,14 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
658
651
|
dependencies = [
|
|
659
652
|
"proc-macro2",
|
|
660
653
|
"quote",
|
|
661
|
-
"syn 2.0.
|
|
654
|
+
"syn 2.0.114",
|
|
662
655
|
]
|
|
663
656
|
|
|
664
657
|
[[package]]
|
|
665
658
|
name = "either"
|
|
666
|
-
version = "1.
|
|
659
|
+
version = "1.15.0"
|
|
667
660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
-
checksum = "
|
|
661
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
669
662
|
|
|
670
663
|
[[package]]
|
|
671
664
|
name = "equivalent"
|
|
@@ -797,7 +790,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
|
797
790
|
dependencies = [
|
|
798
791
|
"proc-macro2",
|
|
799
792
|
"quote",
|
|
800
|
-
"syn 2.0.
|
|
793
|
+
"syn 2.0.114",
|
|
801
794
|
]
|
|
802
795
|
|
|
803
796
|
[[package]]
|
|
@@ -885,7 +878,7 @@ dependencies = [
|
|
|
885
878
|
"futures-core",
|
|
886
879
|
"futures-sink",
|
|
887
880
|
"http",
|
|
888
|
-
"indexmap 2.
|
|
881
|
+
"indexmap 2.13.0",
|
|
889
882
|
"slab",
|
|
890
883
|
"tokio",
|
|
891
884
|
"tokio-util",
|
|
@@ -906,9 +899,9 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
|
906
899
|
|
|
907
900
|
[[package]]
|
|
908
901
|
name = "hashbrown"
|
|
909
|
-
version = "0.
|
|
902
|
+
version = "0.16.1"
|
|
910
903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
-
checksum = "
|
|
904
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
912
905
|
|
|
913
906
|
[[package]]
|
|
914
907
|
name = "heck"
|
|
@@ -1198,7 +1191,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
|
1198
1191
|
dependencies = [
|
|
1199
1192
|
"proc-macro2",
|
|
1200
1193
|
"quote",
|
|
1201
|
-
"syn 2.0.
|
|
1194
|
+
"syn 2.0.114",
|
|
1202
1195
|
]
|
|
1203
1196
|
|
|
1204
1197
|
[[package]]
|
|
@@ -1241,13 +1234,14 @@ dependencies = [
|
|
|
1241
1234
|
|
|
1242
1235
|
[[package]]
|
|
1243
1236
|
name = "indexmap"
|
|
1244
|
-
version = "2.
|
|
1237
|
+
version = "2.13.0"
|
|
1245
1238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
-
checksum = "
|
|
1239
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
1247
1240
|
dependencies = [
|
|
1248
1241
|
"equivalent",
|
|
1249
|
-
"hashbrown 0.
|
|
1242
|
+
"hashbrown 0.16.1",
|
|
1250
1243
|
"serde",
|
|
1244
|
+
"serde_core",
|
|
1251
1245
|
]
|
|
1252
1246
|
|
|
1253
1247
|
[[package]]
|
|
@@ -1258,9 +1252,9 @@ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
|
1258
1252
|
|
|
1259
1253
|
[[package]]
|
|
1260
1254
|
name = "inventory"
|
|
1261
|
-
version = "0.3.
|
|
1255
|
+
version = "0.3.21"
|
|
1262
1256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
-
checksum = "
|
|
1257
|
+
checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
|
|
1264
1258
|
dependencies = [
|
|
1265
1259
|
"rustversion",
|
|
1266
1260
|
]
|
|
@@ -1280,6 +1274,15 @@ dependencies = [
|
|
|
1280
1274
|
"either",
|
|
1281
1275
|
]
|
|
1282
1276
|
|
|
1277
|
+
[[package]]
|
|
1278
|
+
name = "itertools"
|
|
1279
|
+
version = "0.14.0"
|
|
1280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1282
|
+
dependencies = [
|
|
1283
|
+
"either",
|
|
1284
|
+
]
|
|
1285
|
+
|
|
1283
1286
|
[[package]]
|
|
1284
1287
|
name = "itoa"
|
|
1285
1288
|
version = "1.0.14"
|
|
@@ -1373,9 +1376,9 @@ dependencies = [
|
|
|
1373
1376
|
|
|
1374
1377
|
[[package]]
|
|
1375
1378
|
name = "log"
|
|
1376
|
-
version = "0.4.
|
|
1379
|
+
version = "0.4.29"
|
|
1377
1380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
|
-
checksum = "
|
|
1381
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1379
1382
|
|
|
1380
1383
|
[[package]]
|
|
1381
1384
|
name = "maplit"
|
|
@@ -1514,7 +1517,7 @@ dependencies = [
|
|
|
1514
1517
|
"napi-derive-backend",
|
|
1515
1518
|
"proc-macro2",
|
|
1516
1519
|
"quote",
|
|
1517
|
-
"syn 2.0.
|
|
1520
|
+
"syn 2.0.114",
|
|
1518
1521
|
]
|
|
1519
1522
|
|
|
1520
1523
|
[[package]]
|
|
@@ -1527,7 +1530,7 @@ dependencies = [
|
|
|
1527
1530
|
"proc-macro2",
|
|
1528
1531
|
"quote",
|
|
1529
1532
|
"semver",
|
|
1530
|
-
"syn 2.0.
|
|
1533
|
+
"syn 2.0.114",
|
|
1531
1534
|
]
|
|
1532
1535
|
|
|
1533
1536
|
[[package]]
|
|
@@ -1632,9 +1635,9 @@ dependencies = [
|
|
|
1632
1635
|
|
|
1633
1636
|
[[package]]
|
|
1634
1637
|
name = "once_cell"
|
|
1635
|
-
version = "1.
|
|
1638
|
+
version = "1.21.3"
|
|
1636
1639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1637
|
-
checksum = "
|
|
1640
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1638
1641
|
|
|
1639
1642
|
[[package]]
|
|
1640
1643
|
name = "os_str_bytes"
|
|
@@ -1678,7 +1681,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1678
1681
|
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
1679
1682
|
dependencies = [
|
|
1680
1683
|
"fixedbitset",
|
|
1681
|
-
"indexmap 2.
|
|
1684
|
+
"indexmap 2.13.0",
|
|
1682
1685
|
]
|
|
1683
1686
|
|
|
1684
1687
|
[[package]]
|
|
@@ -1698,7 +1701,7 @@ checksum = "f6e859e6e5bd50440ab63c47e3ebabc90f26251f7c73c3d3e837b74a1cc3fa67"
|
|
|
1698
1701
|
dependencies = [
|
|
1699
1702
|
"proc-macro2",
|
|
1700
1703
|
"quote",
|
|
1701
|
-
"syn 2.0.
|
|
1704
|
+
"syn 2.0.114",
|
|
1702
1705
|
]
|
|
1703
1706
|
|
|
1704
1707
|
[[package]]
|
|
@@ -1756,14 +1759,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1756
1759
|
checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
|
|
1757
1760
|
dependencies = [
|
|
1758
1761
|
"proc-macro2",
|
|
1759
|
-
"syn 2.0.
|
|
1762
|
+
"syn 2.0.114",
|
|
1760
1763
|
]
|
|
1761
1764
|
|
|
1762
1765
|
[[package]]
|
|
1763
1766
|
name = "proc-macro2"
|
|
1764
|
-
version = "1.0.
|
|
1767
|
+
version = "1.0.106"
|
|
1765
1768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1766
|
-
checksum = "
|
|
1769
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1767
1770
|
dependencies = [
|
|
1768
1771
|
"unicode-ident",
|
|
1769
1772
|
]
|
|
@@ -1795,7 +1798,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1795
1798
|
checksum = "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b"
|
|
1796
1799
|
dependencies = [
|
|
1797
1800
|
"heck 0.5.0",
|
|
1798
|
-
"itertools",
|
|
1801
|
+
"itertools 0.13.0",
|
|
1799
1802
|
"log",
|
|
1800
1803
|
"multimap",
|
|
1801
1804
|
"once_cell",
|
|
@@ -1804,7 +1807,7 @@ dependencies = [
|
|
|
1804
1807
|
"prost 0.13.4",
|
|
1805
1808
|
"prost-types 0.13.4",
|
|
1806
1809
|
"regex",
|
|
1807
|
-
"syn 2.0.
|
|
1810
|
+
"syn 2.0.114",
|
|
1808
1811
|
"tempfile",
|
|
1809
1812
|
]
|
|
1810
1813
|
|
|
@@ -1815,7 +1818,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1815
1818
|
checksum = "ac6c3320f9abac597dcbc668774ef006702672474aad53c6d596b62e487b40b1"
|
|
1816
1819
|
dependencies = [
|
|
1817
1820
|
"heck 0.5.0",
|
|
1818
|
-
"itertools",
|
|
1821
|
+
"itertools 0.14.0",
|
|
1819
1822
|
"log",
|
|
1820
1823
|
"multimap",
|
|
1821
1824
|
"once_cell",
|
|
@@ -1826,7 +1829,7 @@ dependencies = [
|
|
|
1826
1829
|
"pulldown-cmark",
|
|
1827
1830
|
"pulldown-cmark-to-cmark",
|
|
1828
1831
|
"regex",
|
|
1829
|
-
"syn 2.0.
|
|
1832
|
+
"syn 2.0.114",
|
|
1830
1833
|
"tempfile",
|
|
1831
1834
|
]
|
|
1832
1835
|
|
|
@@ -1837,10 +1840,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1837
1840
|
checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3"
|
|
1838
1841
|
dependencies = [
|
|
1839
1842
|
"anyhow",
|
|
1840
|
-
"itertools",
|
|
1843
|
+
"itertools 0.13.0",
|
|
1841
1844
|
"proc-macro2",
|
|
1842
1845
|
"quote",
|
|
1843
|
-
"syn 2.0.
|
|
1846
|
+
"syn 2.0.114",
|
|
1844
1847
|
]
|
|
1845
1848
|
|
|
1846
1849
|
[[package]]
|
|
@@ -1850,10 +1853,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1850
1853
|
checksum = "9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425"
|
|
1851
1854
|
dependencies = [
|
|
1852
1855
|
"anyhow",
|
|
1853
|
-
"itertools",
|
|
1856
|
+
"itertools 0.14.0",
|
|
1854
1857
|
"proc-macro2",
|
|
1855
1858
|
"quote",
|
|
1856
|
-
"syn 2.0.
|
|
1859
|
+
"syn 2.0.114",
|
|
1857
1860
|
]
|
|
1858
1861
|
|
|
1859
1862
|
[[package]]
|
|
@@ -1896,9 +1899,9 @@ dependencies = [
|
|
|
1896
1899
|
|
|
1897
1900
|
[[package]]
|
|
1898
1901
|
name = "pyo3"
|
|
1899
|
-
version = "0.23.
|
|
1902
|
+
version = "0.23.5"
|
|
1900
1903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1901
|
-
checksum = "
|
|
1904
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
1902
1905
|
dependencies = [
|
|
1903
1906
|
"cfg-if",
|
|
1904
1907
|
"indoc",
|
|
@@ -1914,9 +1917,9 @@ dependencies = [
|
|
|
1914
1917
|
|
|
1915
1918
|
[[package]]
|
|
1916
1919
|
name = "pyo3-build-config"
|
|
1917
|
-
version = "0.23.
|
|
1920
|
+
version = "0.23.5"
|
|
1918
1921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1919
|
-
checksum = "
|
|
1922
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
1920
1923
|
dependencies = [
|
|
1921
1924
|
"once_cell",
|
|
1922
1925
|
"target-lexicon",
|
|
@@ -1924,9 +1927,9 @@ dependencies = [
|
|
|
1924
1927
|
|
|
1925
1928
|
[[package]]
|
|
1926
1929
|
name = "pyo3-ffi"
|
|
1927
|
-
version = "0.23.
|
|
1930
|
+
version = "0.23.5"
|
|
1928
1931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1929
|
-
checksum = "
|
|
1932
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
1930
1933
|
dependencies = [
|
|
1931
1934
|
"libc",
|
|
1932
1935
|
"pyo3-build-config",
|
|
@@ -1934,27 +1937,27 @@ dependencies = [
|
|
|
1934
1937
|
|
|
1935
1938
|
[[package]]
|
|
1936
1939
|
name = "pyo3-macros"
|
|
1937
|
-
version = "0.23.
|
|
1940
|
+
version = "0.23.5"
|
|
1938
1941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
-
checksum = "
|
|
1942
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
1940
1943
|
dependencies = [
|
|
1941
1944
|
"proc-macro2",
|
|
1942
1945
|
"pyo3-macros-backend",
|
|
1943
1946
|
"quote",
|
|
1944
|
-
"syn 2.0.
|
|
1947
|
+
"syn 2.0.114",
|
|
1945
1948
|
]
|
|
1946
1949
|
|
|
1947
1950
|
[[package]]
|
|
1948
1951
|
name = "pyo3-macros-backend"
|
|
1949
|
-
version = "0.23.
|
|
1952
|
+
version = "0.23.5"
|
|
1950
1953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1951
|
-
checksum = "
|
|
1954
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
1952
1955
|
dependencies = [
|
|
1953
1956
|
"heck 0.5.0",
|
|
1954
1957
|
"proc-macro2",
|
|
1955
1958
|
"pyo3-build-config",
|
|
1956
1959
|
"quote",
|
|
1957
|
-
"syn 2.0.
|
|
1960
|
+
"syn 2.0.114",
|
|
1958
1961
|
]
|
|
1959
1962
|
|
|
1960
1963
|
[[package]]
|
|
@@ -1966,7 +1969,7 @@ dependencies = [
|
|
|
1966
1969
|
"anyhow",
|
|
1967
1970
|
"chrono",
|
|
1968
1971
|
"inventory",
|
|
1969
|
-
"itertools",
|
|
1972
|
+
"itertools 0.13.0",
|
|
1970
1973
|
"log",
|
|
1971
1974
|
"maplit",
|
|
1972
1975
|
"num-complex",
|
|
@@ -1974,7 +1977,7 @@ dependencies = [
|
|
|
1974
1977
|
"pyo3",
|
|
1975
1978
|
"pyo3-stub-gen-derive",
|
|
1976
1979
|
"serde",
|
|
1977
|
-
"toml 0.8.
|
|
1980
|
+
"toml 0.8.23",
|
|
1978
1981
|
]
|
|
1979
1982
|
|
|
1980
1983
|
[[package]]
|
|
@@ -1985,9 +1988,15 @@ checksum = "3ee49d727163163a0c6fc3fee4636c8b5c82e1bb868e85cf411be7ae9e4e5b40"
|
|
|
1985
1988
|
dependencies = [
|
|
1986
1989
|
"proc-macro2",
|
|
1987
1990
|
"quote",
|
|
1988
|
-
"syn 2.0.
|
|
1991
|
+
"syn 2.0.114",
|
|
1989
1992
|
]
|
|
1990
1993
|
|
|
1994
|
+
[[package]]
|
|
1995
|
+
name = "quick-error"
|
|
1996
|
+
version = "1.2.3"
|
|
1997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
1999
|
+
|
|
1991
2000
|
[[package]]
|
|
1992
2001
|
name = "quinn"
|
|
1993
2002
|
version = "0.11.7"
|
|
@@ -2044,9 +2053,9 @@ dependencies = [
|
|
|
2044
2053
|
|
|
2045
2054
|
[[package]]
|
|
2046
2055
|
name = "quote"
|
|
2047
|
-
version = "1.0.
|
|
2056
|
+
version = "1.0.44"
|
|
2048
2057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2049
|
-
checksum = "
|
|
2058
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
2050
2059
|
dependencies = [
|
|
2051
2060
|
"proc-macro2",
|
|
2052
2061
|
]
|
|
@@ -2277,7 +2286,7 @@ dependencies = [
|
|
|
2277
2286
|
"inventory",
|
|
2278
2287
|
"proc-macro2",
|
|
2279
2288
|
"quote",
|
|
2280
|
-
"syn 2.0.
|
|
2289
|
+
"syn 2.0.114",
|
|
2281
2290
|
]
|
|
2282
2291
|
|
|
2283
2292
|
[[package]]
|
|
@@ -2330,6 +2339,18 @@ version = "1.0.19"
|
|
|
2330
2339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
2340
|
checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
|
|
2332
2341
|
|
|
2342
|
+
[[package]]
|
|
2343
|
+
name = "rusty-fork"
|
|
2344
|
+
version = "0.3.1"
|
|
2345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2346
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
2347
|
+
dependencies = [
|
|
2348
|
+
"fnv",
|
|
2349
|
+
"quick-error",
|
|
2350
|
+
"tempfile",
|
|
2351
|
+
"wait-timeout",
|
|
2352
|
+
]
|
|
2353
|
+
|
|
2333
2354
|
[[package]]
|
|
2334
2355
|
name = "ryu"
|
|
2335
2356
|
version = "1.0.19"
|
|
@@ -2399,7 +2420,7 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
|
2399
2420
|
dependencies = [
|
|
2400
2421
|
"proc-macro2",
|
|
2401
2422
|
"quote",
|
|
2402
|
-
"syn 2.0.
|
|
2423
|
+
"syn 2.0.114",
|
|
2403
2424
|
]
|
|
2404
2425
|
|
|
2405
2426
|
[[package]]
|
|
@@ -2408,6 +2429,7 @@ version = "1.0.143"
|
|
|
2408
2429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2409
2430
|
checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
|
|
2410
2431
|
dependencies = [
|
|
2432
|
+
"indexmap 2.13.0",
|
|
2411
2433
|
"itoa",
|
|
2412
2434
|
"memchr",
|
|
2413
2435
|
"ryu",
|
|
@@ -2416,9 +2438,9 @@ dependencies = [
|
|
|
2416
2438
|
|
|
2417
2439
|
[[package]]
|
|
2418
2440
|
name = "serde_spanned"
|
|
2419
|
-
version = "0.6.
|
|
2441
|
+
version = "0.6.9"
|
|
2420
2442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2421
|
-
checksum = "
|
|
2443
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
2422
2444
|
dependencies = [
|
|
2423
2445
|
"serde",
|
|
2424
2446
|
]
|
|
@@ -2445,7 +2467,7 @@ dependencies = [
|
|
|
2445
2467
|
"chrono",
|
|
2446
2468
|
"hex",
|
|
2447
2469
|
"indexmap 1.9.3",
|
|
2448
|
-
"indexmap 2.
|
|
2470
|
+
"indexmap 2.13.0",
|
|
2449
2471
|
"serde",
|
|
2450
2472
|
"serde_derive",
|
|
2451
2473
|
"serde_json",
|
|
@@ -2462,7 +2484,7 @@ dependencies = [
|
|
|
2462
2484
|
"darling",
|
|
2463
2485
|
"proc-macro2",
|
|
2464
2486
|
"quote",
|
|
2465
|
-
"syn 2.0.
|
|
2487
|
+
"syn 2.0.114",
|
|
2466
2488
|
]
|
|
2467
2489
|
|
|
2468
2490
|
[[package]]
|
|
@@ -2471,7 +2493,7 @@ version = "0.9.34+deprecated"
|
|
|
2471
2493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2472
2494
|
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
2473
2495
|
dependencies = [
|
|
2474
|
-
"indexmap 2.
|
|
2496
|
+
"indexmap 2.13.0",
|
|
2475
2497
|
"itoa",
|
|
2476
2498
|
"ryu",
|
|
2477
2499
|
"serde",
|
|
@@ -2500,7 +2522,7 @@ checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef"
|
|
|
2500
2522
|
dependencies = [
|
|
2501
2523
|
"proc-macro2",
|
|
2502
2524
|
"quote",
|
|
2503
|
-
"syn 2.0.
|
|
2525
|
+
"syn 2.0.114",
|
|
2504
2526
|
]
|
|
2505
2527
|
|
|
2506
2528
|
[[package]]
|
|
@@ -2531,7 +2553,7 @@ dependencies = [
|
|
|
2531
2553
|
|
|
2532
2554
|
[[package]]
|
|
2533
2555
|
name = "sigstat-grpc"
|
|
2534
|
-
version = "0.15.
|
|
2556
|
+
version = "0.15.1"
|
|
2535
2557
|
dependencies = [
|
|
2536
2558
|
"async-trait",
|
|
2537
2559
|
"chrono",
|
|
@@ -2605,7 +2627,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
|
2605
2627
|
|
|
2606
2628
|
[[package]]
|
|
2607
2629
|
name = "statsig-node"
|
|
2608
|
-
version = "0.15.
|
|
2630
|
+
version = "0.15.1"
|
|
2609
2631
|
dependencies = [
|
|
2610
2632
|
"async-trait",
|
|
2611
2633
|
"napi",
|
|
@@ -2619,7 +2641,7 @@ dependencies = [
|
|
|
2619
2641
|
|
|
2620
2642
|
[[package]]
|
|
2621
2643
|
name = "statsig-pyo3"
|
|
2622
|
-
version = "0.15.
|
|
2644
|
+
version = "0.15.1"
|
|
2623
2645
|
dependencies = [
|
|
2624
2646
|
"async-trait",
|
|
2625
2647
|
"lazy_static",
|
|
@@ -2633,7 +2655,7 @@ dependencies = [
|
|
|
2633
2655
|
|
|
2634
2656
|
[[package]]
|
|
2635
2657
|
name = "statsig-rust"
|
|
2636
|
-
version = "0.15.
|
|
2658
|
+
version = "0.15.1"
|
|
2637
2659
|
dependencies = [
|
|
2638
2660
|
"ahash",
|
|
2639
2661
|
"arc-swap",
|
|
@@ -2658,6 +2680,7 @@ dependencies = [
|
|
|
2658
2680
|
"prost 0.14.1",
|
|
2659
2681
|
"rand 0.8.5",
|
|
2660
2682
|
"reqwest",
|
|
2683
|
+
"rusty-fork",
|
|
2661
2684
|
"serde",
|
|
2662
2685
|
"serde_derive",
|
|
2663
2686
|
"serde_json",
|
|
@@ -2678,7 +2701,7 @@ dependencies = [
|
|
|
2678
2701
|
|
|
2679
2702
|
[[package]]
|
|
2680
2703
|
name = "statsig_elixir"
|
|
2681
|
-
version = "0.15.
|
|
2704
|
+
version = "0.15.1"
|
|
2682
2705
|
dependencies = [
|
|
2683
2706
|
"async-trait",
|
|
2684
2707
|
"parking_lot",
|
|
@@ -2691,7 +2714,7 @@ dependencies = [
|
|
|
2691
2714
|
|
|
2692
2715
|
[[package]]
|
|
2693
2716
|
name = "statsig_ffi"
|
|
2694
|
-
version = "0.15.
|
|
2717
|
+
version = "0.15.1"
|
|
2695
2718
|
dependencies = [
|
|
2696
2719
|
"async-trait",
|
|
2697
2720
|
"cbindgen",
|
|
@@ -2736,9 +2759,9 @@ dependencies = [
|
|
|
2736
2759
|
|
|
2737
2760
|
[[package]]
|
|
2738
2761
|
name = "syn"
|
|
2739
|
-
version = "2.0.
|
|
2762
|
+
version = "2.0.114"
|
|
2740
2763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2741
|
-
checksum = "
|
|
2764
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
2742
2765
|
dependencies = [
|
|
2743
2766
|
"proc-macro2",
|
|
2744
2767
|
"quote",
|
|
@@ -2762,7 +2785,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
|
2762
2785
|
dependencies = [
|
|
2763
2786
|
"proc-macro2",
|
|
2764
2787
|
"quote",
|
|
2765
|
-
"syn 2.0.
|
|
2788
|
+
"syn 2.0.114",
|
|
2766
2789
|
]
|
|
2767
2790
|
|
|
2768
2791
|
[[package]]
|
|
@@ -2826,7 +2849,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
2826
2849
|
dependencies = [
|
|
2827
2850
|
"proc-macro2",
|
|
2828
2851
|
"quote",
|
|
2829
|
-
"syn 2.0.
|
|
2852
|
+
"syn 2.0.114",
|
|
2830
2853
|
]
|
|
2831
2854
|
|
|
2832
2855
|
[[package]]
|
|
@@ -2837,7 +2860,7 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
|
2837
2860
|
dependencies = [
|
|
2838
2861
|
"proc-macro2",
|
|
2839
2862
|
"quote",
|
|
2840
|
-
"syn 2.0.
|
|
2863
|
+
"syn 2.0.114",
|
|
2841
2864
|
]
|
|
2842
2865
|
|
|
2843
2866
|
[[package]]
|
|
@@ -2924,7 +2947,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
|
2924
2947
|
dependencies = [
|
|
2925
2948
|
"proc-macro2",
|
|
2926
2949
|
"quote",
|
|
2927
|
-
"syn 2.0.
|
|
2950
|
+
"syn 2.0.114",
|
|
2928
2951
|
]
|
|
2929
2952
|
|
|
2930
2953
|
[[package]]
|
|
@@ -2972,9 +2995,9 @@ dependencies = [
|
|
|
2972
2995
|
|
|
2973
2996
|
[[package]]
|
|
2974
2997
|
name = "toml"
|
|
2975
|
-
version = "0.8.
|
|
2998
|
+
version = "0.8.23"
|
|
2976
2999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2977
|
-
checksum = "
|
|
3000
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
2978
3001
|
dependencies = [
|
|
2979
3002
|
"serde",
|
|
2980
3003
|
"serde_spanned",
|
|
@@ -2984,26 +3007,33 @@ dependencies = [
|
|
|
2984
3007
|
|
|
2985
3008
|
[[package]]
|
|
2986
3009
|
name = "toml_datetime"
|
|
2987
|
-
version = "0.6.
|
|
3010
|
+
version = "0.6.11"
|
|
2988
3011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2989
|
-
checksum = "
|
|
3012
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
2990
3013
|
dependencies = [
|
|
2991
3014
|
"serde",
|
|
2992
3015
|
]
|
|
2993
3016
|
|
|
2994
3017
|
[[package]]
|
|
2995
3018
|
name = "toml_edit"
|
|
2996
|
-
version = "0.22.
|
|
3019
|
+
version = "0.22.27"
|
|
2997
3020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2998
|
-
checksum = "
|
|
3021
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
2999
3022
|
dependencies = [
|
|
3000
|
-
"indexmap 2.
|
|
3023
|
+
"indexmap 2.13.0",
|
|
3001
3024
|
"serde",
|
|
3002
3025
|
"serde_spanned",
|
|
3003
3026
|
"toml_datetime",
|
|
3027
|
+
"toml_write",
|
|
3004
3028
|
"winnow",
|
|
3005
3029
|
]
|
|
3006
3030
|
|
|
3031
|
+
[[package]]
|
|
3032
|
+
name = "toml_write"
|
|
3033
|
+
version = "0.1.2"
|
|
3034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3035
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
3036
|
+
|
|
3007
3037
|
[[package]]
|
|
3008
3038
|
name = "tonic"
|
|
3009
3039
|
version = "0.12.3"
|
|
@@ -3076,7 +3106,7 @@ dependencies = [
|
|
|
3076
3106
|
"prost-build 0.13.4",
|
|
3077
3107
|
"prost-types 0.13.4",
|
|
3078
3108
|
"quote",
|
|
3079
|
-
"syn 2.0.
|
|
3109
|
+
"syn 2.0.114",
|
|
3080
3110
|
]
|
|
3081
3111
|
|
|
3082
3112
|
[[package]]
|
|
@@ -3088,7 +3118,7 @@ dependencies = [
|
|
|
3088
3118
|
"prettyplease",
|
|
3089
3119
|
"proc-macro2",
|
|
3090
3120
|
"quote",
|
|
3091
|
-
"syn 2.0.
|
|
3121
|
+
"syn 2.0.114",
|
|
3092
3122
|
]
|
|
3093
3123
|
|
|
3094
3124
|
[[package]]
|
|
@@ -3102,7 +3132,7 @@ dependencies = [
|
|
|
3102
3132
|
"prost-build 0.14.1",
|
|
3103
3133
|
"prost-types 0.14.1",
|
|
3104
3134
|
"quote",
|
|
3105
|
-
"syn 2.0.
|
|
3135
|
+
"syn 2.0.114",
|
|
3106
3136
|
"tempfile",
|
|
3107
3137
|
"tonic-build 0.14.2",
|
|
3108
3138
|
]
|
|
@@ -3135,7 +3165,7 @@ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
|
3135
3165
|
dependencies = [
|
|
3136
3166
|
"futures-core",
|
|
3137
3167
|
"futures-util",
|
|
3138
|
-
"indexmap 2.
|
|
3168
|
+
"indexmap 2.13.0",
|
|
3139
3169
|
"pin-project-lite",
|
|
3140
3170
|
"slab",
|
|
3141
3171
|
"sync_wrapper",
|
|
@@ -3177,7 +3207,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
|
3177
3207
|
dependencies = [
|
|
3178
3208
|
"proc-macro2",
|
|
3179
3209
|
"quote",
|
|
3180
|
-
"syn 2.0.
|
|
3210
|
+
"syn 2.0.114",
|
|
3181
3211
|
]
|
|
3182
3212
|
|
|
3183
3213
|
[[package]]
|
|
@@ -3290,6 +3320,15 @@ version = "0.9.5"
|
|
|
3290
3320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3291
3321
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3292
3322
|
|
|
3323
|
+
[[package]]
|
|
3324
|
+
name = "wait-timeout"
|
|
3325
|
+
version = "0.2.1"
|
|
3326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3327
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
3328
|
+
dependencies = [
|
|
3329
|
+
"libc",
|
|
3330
|
+
]
|
|
3331
|
+
|
|
3293
3332
|
[[package]]
|
|
3294
3333
|
name = "walkdir"
|
|
3295
3334
|
version = "2.5.0"
|
|
@@ -3346,7 +3385,7 @@ dependencies = [
|
|
|
3346
3385
|
"log",
|
|
3347
3386
|
"proc-macro2",
|
|
3348
3387
|
"quote",
|
|
3349
|
-
"syn 2.0.
|
|
3388
|
+
"syn 2.0.114",
|
|
3350
3389
|
"wasm-bindgen-shared",
|
|
3351
3390
|
]
|
|
3352
3391
|
|
|
@@ -3381,7 +3420,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
|
3381
3420
|
dependencies = [
|
|
3382
3421
|
"proc-macro2",
|
|
3383
3422
|
"quote",
|
|
3384
|
-
"syn 2.0.
|
|
3423
|
+
"syn 2.0.114",
|
|
3385
3424
|
"wasm-bindgen-backend",
|
|
3386
3425
|
"wasm-bindgen-shared",
|
|
3387
3426
|
]
|
|
@@ -3795,9 +3834,9 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
|
3795
3834
|
|
|
3796
3835
|
[[package]]
|
|
3797
3836
|
name = "winnow"
|
|
3798
|
-
version = "0.7.
|
|
3837
|
+
version = "0.7.14"
|
|
3799
3838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3800
|
-
checksum = "
|
|
3839
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
3801
3840
|
dependencies = [
|
|
3802
3841
|
"memchr",
|
|
3803
3842
|
]
|
|
@@ -3867,7 +3906,7 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
|
3867
3906
|
dependencies = [
|
|
3868
3907
|
"proc-macro2",
|
|
3869
3908
|
"quote",
|
|
3870
|
-
"syn 2.0.
|
|
3909
|
+
"syn 2.0.114",
|
|
3871
3910
|
"synstructure",
|
|
3872
3911
|
]
|
|
3873
3912
|
|
|
@@ -3898,7 +3937,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
3898
3937
|
dependencies = [
|
|
3899
3938
|
"proc-macro2",
|
|
3900
3939
|
"quote",
|
|
3901
|
-
"syn 2.0.
|
|
3940
|
+
"syn 2.0.114",
|
|
3902
3941
|
]
|
|
3903
3942
|
|
|
3904
3943
|
[[package]]
|
|
@@ -3909,7 +3948,7 @@ checksum = "06718a168365cad3d5ff0bb133aad346959a2074bd4a85c121255a11304a8626"
|
|
|
3909
3948
|
dependencies = [
|
|
3910
3949
|
"proc-macro2",
|
|
3911
3950
|
"quote",
|
|
3912
|
-
"syn 2.0.
|
|
3951
|
+
"syn 2.0.114",
|
|
3913
3952
|
]
|
|
3914
3953
|
|
|
3915
3954
|
[[package]]
|
|
@@ -3929,7 +3968,7 @@ checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
|
|
|
3929
3968
|
dependencies = [
|
|
3930
3969
|
"proc-macro2",
|
|
3931
3970
|
"quote",
|
|
3932
|
-
"syn 2.0.
|
|
3971
|
+
"syn 2.0.114",
|
|
3933
3972
|
"synstructure",
|
|
3934
3973
|
]
|
|
3935
3974
|
|
|
@@ -3958,7 +3997,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
|
3958
3997
|
dependencies = [
|
|
3959
3998
|
"proc-macro2",
|
|
3960
3999
|
"quote",
|
|
3961
|
-
"syn 2.0.
|
|
4000
|
+
"syn 2.0.114",
|
|
3962
4001
|
]
|
|
3963
4002
|
|
|
3964
4003
|
[[package]]
|