iceoryx2 0.7.0__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.
- iceoryx2-0.7.0/Cargo.lock +4904 -0
- iceoryx2-0.7.0/Cargo.toml +107 -0
- iceoryx2-0.7.0/PKG-INFO +235 -0
- iceoryx2-0.7.0/README.md +201 -0
- iceoryx2-0.7.0/iceoryx2/BUILD.bazel +82 -0
- iceoryx2-0.7.0/iceoryx2/Cargo.toml +51 -0
- iceoryx2-0.7.0/iceoryx2/README.md +201 -0
- iceoryx2-0.7.0/iceoryx2/src/active_request.rs +640 -0
- iceoryx2-0.7.0/iceoryx2/src/config.rs +725 -0
- iceoryx2-0.7.0/iceoryx2/src/constants.rs +19 -0
- iceoryx2-0.7.0/iceoryx2/src/lib.rs +583 -0
- iceoryx2-0.7.0/iceoryx2/src/node/mod.rs +1351 -0
- iceoryx2-0.7.0/iceoryx2/src/node/node_name.rs +123 -0
- iceoryx2-0.7.0/iceoryx2/src/node/testing.rs +22 -0
- iceoryx2-0.7.0/iceoryx2/src/pending_response.rs +461 -0
- iceoryx2-0.7.0/iceoryx2/src/port/client.rs +1020 -0
- iceoryx2-0.7.0/iceoryx2/src/port/details/channel_management.rs +77 -0
- iceoryx2-0.7.0/iceoryx2/src/port/details/chunk.rs +62 -0
- iceoryx2-0.7.0/iceoryx2/src/port/details/chunk_details.rs +21 -0
- iceoryx2-0.7.0/iceoryx2/src/port/details/data_segment.rs +267 -0
- iceoryx2-0.7.0/iceoryx2/src/port/details/mod.rs +19 -0
- iceoryx2-0.7.0/iceoryx2/src/port/details/receiver.rs +493 -0
- iceoryx2-0.7.0/iceoryx2/src/port/details/segment_state.rs +58 -0
- iceoryx2-0.7.0/iceoryx2/src/port/details/sender.rs +481 -0
- iceoryx2-0.7.0/iceoryx2/src/port/event_id.rs +42 -0
- iceoryx2-0.7.0/iceoryx2/src/port/listener.rs +314 -0
- iceoryx2-0.7.0/iceoryx2/src/port/mod.rs +165 -0
- iceoryx2-0.7.0/iceoryx2/src/port/notifier.rs +509 -0
- iceoryx2-0.7.0/iceoryx2/src/port/port_identifiers.rs +101 -0
- iceoryx2-0.7.0/iceoryx2/src/port/publisher.rs +850 -0
- iceoryx2-0.7.0/iceoryx2/src/port/reader.rs +400 -0
- iceoryx2-0.7.0/iceoryx2/src/port/server.rs +808 -0
- iceoryx2-0.7.0/iceoryx2/src/port/subscriber.rs +447 -0
- iceoryx2-0.7.0/iceoryx2/src/port/unable_to_deliver_strategy.rs +65 -0
- iceoryx2-0.7.0/iceoryx2/src/port/update_connections.rs +84 -0
- iceoryx2-0.7.0/iceoryx2/src/port/writer.rs +745 -0
- iceoryx2-0.7.0/iceoryx2/src/prelude.rs +40 -0
- iceoryx2-0.7.0/iceoryx2/src/raw_sample.rs +218 -0
- iceoryx2-0.7.0/iceoryx2/src/request_mut.rs +248 -0
- iceoryx2-0.7.0/iceoryx2/src/request_mut_uninit.rs +347 -0
- iceoryx2-0.7.0/iceoryx2/src/response.rs +155 -0
- iceoryx2-0.7.0/iceoryx2/src/response_mut.rs +351 -0
- iceoryx2-0.7.0/iceoryx2/src/response_mut_uninit.rs +436 -0
- iceoryx2-0.7.0/iceoryx2/src/sample.rs +140 -0
- iceoryx2-0.7.0/iceoryx2/src/sample_mut.rs +339 -0
- iceoryx2-0.7.0/iceoryx2/src/sample_mut_uninit.rs +494 -0
- iceoryx2-0.7.0/iceoryx2/src/service/attribute.rs +386 -0
- iceoryx2-0.7.0/iceoryx2/src/service/builder/blackboard.rs +894 -0
- iceoryx2-0.7.0/iceoryx2/src/service/builder/event.rs +671 -0
- iceoryx2-0.7.0/iceoryx2/src/service/builder/mod.rs +508 -0
- iceoryx2-0.7.0/iceoryx2/src/service/builder/publish_subscribe.rs +970 -0
- iceoryx2-0.7.0/iceoryx2/src/service/builder/request_response.rs +1545 -0
- iceoryx2-0.7.0/iceoryx2/src/service/config_scheme.rs +139 -0
- iceoryx2-0.7.0/iceoryx2/src/service/dynamic_config/blackboard.rs +180 -0
- iceoryx2-0.7.0/iceoryx2/src/service/dynamic_config/event.rs +191 -0
- iceoryx2-0.7.0/iceoryx2/src/service/dynamic_config/mod.rs +252 -0
- iceoryx2-0.7.0/iceoryx2/src/service/dynamic_config/publish_subscribe.rs +206 -0
- iceoryx2-0.7.0/iceoryx2/src/service/dynamic_config/request_response.rs +197 -0
- iceoryx2-0.7.0/iceoryx2/src/service/header/mod.rs +19 -0
- iceoryx2-0.7.0/iceoryx2/src/service/header/publish_subscribe.rs +86 -0
- iceoryx2-0.7.0/iceoryx2/src/service/header/request_response.rs +81 -0
- iceoryx2-0.7.0/iceoryx2/src/service/ipc.rs +63 -0
- iceoryx2-0.7.0/iceoryx2/src/service/ipc_threadsafe.rs +64 -0
- iceoryx2-0.7.0/iceoryx2/src/service/local.rs +64 -0
- iceoryx2-0.7.0/iceoryx2/src/service/local_threadsafe.rs +64 -0
- iceoryx2-0.7.0/iceoryx2/src/service/messaging_pattern.rs +75 -0
- iceoryx2-0.7.0/iceoryx2/src/service/mod.rs +1123 -0
- iceoryx2-0.7.0/iceoryx2/src/service/naming_scheme.rs +60 -0
- iceoryx2-0.7.0/iceoryx2/src/service/port_factory/blackboard.rs +171 -0
- iceoryx2-0.7.0/iceoryx2/src/service/port_factory/client.rs +258 -0
- iceoryx2-0.7.0/iceoryx2/src/service/port_factory/event.rs +150 -0
- iceoryx2-0.7.0/iceoryx2/src/service/port_factory/listener.rs +55 -0
- iceoryx2-0.7.0/iceoryx2/src/service/port_factory/mod.rs +122 -0
- iceoryx2-0.7.0/iceoryx2/src/service/port_factory/notifier.rs +73 -0
- iceoryx2-0.7.0/iceoryx2/src/service/port_factory/publish_subscribe.rs +195 -0
- iceoryx2-0.7.0/iceoryx2/src/service/port_factory/publisher.rs +222 -0
- iceoryx2-0.7.0/iceoryx2/src/service/port_factory/reader.rs +69 -0
- iceoryx2-0.7.0/iceoryx2/src/service/port_factory/request_response.rs +253 -0
- iceoryx2-0.7.0/iceoryx2/src/service/port_factory/server.rs +283 -0
- iceoryx2-0.7.0/iceoryx2/src/service/port_factory/subscriber.rs +138 -0
- iceoryx2-0.7.0/iceoryx2/src/service/port_factory/writer.rs +69 -0
- iceoryx2-0.7.0/iceoryx2/src/service/service_id.rs +56 -0
- iceoryx2-0.7.0/iceoryx2/src/service/service_name.rs +194 -0
- iceoryx2-0.7.0/iceoryx2/src/service/stale_resource_cleanup.rs +177 -0
- iceoryx2-0.7.0/iceoryx2/src/service/static_config/blackboard.rs +77 -0
- iceoryx2-0.7.0/iceoryx2/src/service/static_config/event.rs +127 -0
- iceoryx2-0.7.0/iceoryx2/src/service/static_config/message_type_details.rs +433 -0
- iceoryx2-0.7.0/iceoryx2/src/service/static_config/messaging_pattern.rs +176 -0
- iceoryx2-0.7.0/iceoryx2/src/service/static_config/mod.rs +226 -0
- iceoryx2-0.7.0/iceoryx2/src/service/static_config/publish_subscribe.rs +133 -0
- iceoryx2-0.7.0/iceoryx2/src/service/static_config/request_response.rs +204 -0
- iceoryx2-0.7.0/iceoryx2/src/signal_handling_mode.rs +25 -0
- iceoryx2-0.7.0/iceoryx2/src/testing.rs +94 -0
- iceoryx2-0.7.0/iceoryx2/src/waitset.rs +980 -0
- iceoryx2-0.7.0/iceoryx2/tests/active_request_tests.rs +319 -0
- iceoryx2-0.7.0/iceoryx2/tests/attribute_tests.rs +130 -0
- iceoryx2-0.7.0/iceoryx2/tests/client_tests.rs +803 -0
- iceoryx2-0.7.0/iceoryx2/tests/listener_tests.rs +64 -0
- iceoryx2-0.7.0/iceoryx2/tests/node_death_tests.rs +888 -0
- iceoryx2-0.7.0/iceoryx2/tests/node_name_tests.rs +42 -0
- iceoryx2-0.7.0/iceoryx2/tests/node_tests.rs +408 -0
- iceoryx2-0.7.0/iceoryx2/tests/notifier_tests.rs +72 -0
- iceoryx2-0.7.0/iceoryx2/tests/pending_response_tests.rs +151 -0
- iceoryx2-0.7.0/iceoryx2/tests/publisher_tests.rs +673 -0
- iceoryx2-0.7.0/iceoryx2/tests/reader_tests.rs +211 -0
- iceoryx2-0.7.0/iceoryx2/tests/sample_mut_tests.rs +193 -0
- iceoryx2-0.7.0/iceoryx2/tests/sample_tests.rs +189 -0
- iceoryx2-0.7.0/iceoryx2/tests/server_tests.rs +769 -0
- iceoryx2-0.7.0/iceoryx2/tests/service_blackboard_tests.rs +1821 -0
- iceoryx2-0.7.0/iceoryx2/tests/service_event_tests.rs +1582 -0
- iceoryx2-0.7.0/iceoryx2/tests/service_event_thread_safety_tests.rs +163 -0
- iceoryx2-0.7.0/iceoryx2/tests/service_publish_subscribe_tests.rs +3473 -0
- iceoryx2-0.7.0/iceoryx2/tests/service_publish_subscribe_thread_safety_tests.rs +133 -0
- iceoryx2-0.7.0/iceoryx2/tests/service_request_response_builder_tests.rs +1245 -0
- iceoryx2-0.7.0/iceoryx2/tests/service_request_response_tests.rs +1620 -0
- iceoryx2-0.7.0/iceoryx2/tests/service_request_response_thread_safety_tests.rs +131 -0
- iceoryx2-0.7.0/iceoryx2/tests/service_static_config_tests.rs +37 -0
- iceoryx2-0.7.0/iceoryx2/tests/service_tests.rs +1247 -0
- iceoryx2-0.7.0/iceoryx2/tests/subscriber_tests.rs +113 -0
- iceoryx2-0.7.0/iceoryx2/tests/waitset_tests.rs +641 -0
- iceoryx2-0.7.0/iceoryx2/tests/writer_tests.rs +387 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/BUILD.bazel +48 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/Cargo.toml +27 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/src/byte_string.rs +698 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/src/flatmap.rs +474 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/src/lib.rs +106 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/src/queue.rs +573 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/src/semantic_string.rs +604 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/src/slotmap.rs +706 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/src/vec.rs +771 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/tests/byte_string_tests.rs +519 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/tests/flatmap_tests.rs +228 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/tests/queue_tests.rs +348 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/tests/slotmap_tests.rs +259 -0
- iceoryx2-0.7.0/iceoryx2-bb/container/tests/vec_tests.rs +398 -0
- iceoryx2-0.7.0/iceoryx2-bb/derive-macros/BUILD.bazel +47 -0
- iceoryx2-0.7.0/iceoryx2-bb/derive-macros/Cargo.toml +26 -0
- iceoryx2-0.7.0/iceoryx2-bb/derive-macros/README.md +201 -0
- iceoryx2-0.7.0/iceoryx2-bb/derive-macros/src/lib.rs +334 -0
- iceoryx2-0.7.0/iceoryx2-bb/derive-macros/src/zero_copy_send_compile_tests.rs +348 -0
- iceoryx2-0.7.0/iceoryx2-bb/derive-macros/tests/placement_default_tests.rs +133 -0
- iceoryx2-0.7.0/iceoryx2-bb/derive-macros/tests/zero_copy_send_tests.rs +175 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/BUILD.bazel +43 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/Cargo.toml +22 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/src/alignment.rs +72 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/src/bump_allocator.rs +55 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/src/cyclic_tagger.rs +111 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/src/enum_gen.rs +362 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/src/lazy_singleton.rs +103 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/src/lib.rs +57 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/src/math.rs +151 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/src/package_version.rs +85 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/src/relocatable_ptr.rs +152 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/src/scope_guard.rs +122 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/src/static_assert.rs +189 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/src/unique_id.rs +127 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/src/unsendable_marker.rs +13 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/tests/alignment_tests.rs +32 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/tests/bump_allocator_tests.rs +101 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/tests/cyclic_tagger_tests.rs +44 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/tests/math_tests.rs +65 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/tests/package_version_tests.rs +40 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/tests/relocatable_ptr_tests.rs +29 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/tests/scope_guard_tests.rs +75 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary/tests/unique_id_tests.rs +39 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary-traits/BUILD.bazel +28 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary-traits/Cargo.toml +15 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary-traits/src/allocator.rs +142 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary-traits/src/as_cstr.rs +26 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary-traits/src/generic_pointer.rs +21 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary-traits/src/lib.rs +27 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary-traits/src/owning_pointer.rs +74 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary-traits/src/placement_default.rs +187 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary-traits/src/pointer_trait.rs +42 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary-traits/src/relocatable_container.rs +50 -0
- iceoryx2-0.7.0/iceoryx2-bb/elementary-traits/src/zero_copy_send.rs +137 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/BUILD.bazel +47 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/Cargo.toml +23 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/src/lib.rs +32 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/src/mpmc/bit_set.rs +349 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/src/mpmc/container.rs +559 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/src/mpmc/mod.rs +17 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/src/mpmc/unique_index_set.rs +675 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/src/spmc/mod.rs +15 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/src/spmc/unrestricted_atomic.rs +378 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/src/spsc/index_queue.rs +447 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/src/spsc/mod.rs +17 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/src/spsc/queue.rs +279 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/src/spsc/safely_overflowing_index_queue.rs +505 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/tests/bitset_tests.rs +223 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/tests/mpmc_container_tests.rs +491 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/tests/mpmc_unique_index_set_tests.rs +255 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/tests/spmc_unrestricted_atomic_tests.rs +378 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/tests/spsc_index_queue_tests.rs +165 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/tests/spsc_queue_tests.rs +157 -0
- iceoryx2-0.7.0/iceoryx2-bb/lock-free/tests/spsc_safely_overflowing_index_queue_tests.rs +253 -0
- iceoryx2-0.7.0/iceoryx2-bb/log/BUILD.bazel +40 -0
- iceoryx2-0.7.0/iceoryx2-bb/log/Cargo.toml +22 -0
- iceoryx2-0.7.0/iceoryx2-bb/log/src/fail.rs +141 -0
- iceoryx2-0.7.0/iceoryx2-bb/log/src/lib.rs +279 -0
- iceoryx2-0.7.0/iceoryx2-bb/log/src/log.rs +267 -0
- iceoryx2-0.7.0/iceoryx2-bb/log/src/logger/buffer.rs +103 -0
- iceoryx2-0.7.0/iceoryx2-bb/log/src/logger/console.rs +183 -0
- iceoryx2-0.7.0/iceoryx2-bb/log/src/logger/file.rs +148 -0
- iceoryx2-0.7.0/iceoryx2-bb/log/src/logger/log.rs +42 -0
- iceoryx2-0.7.0/iceoryx2-bb/log/src/logger/mod.rs +39 -0
- iceoryx2-0.7.0/iceoryx2-bb/log/src/logger/tracing.rs +41 -0
- iceoryx2-0.7.0/iceoryx2-bb/memory/BUILD.bazel +48 -0
- iceoryx2-0.7.0/iceoryx2-bb/memory/Cargo.toml +23 -0
- iceoryx2-0.7.0/iceoryx2-bb/memory/src/bump_allocator.rs +115 -0
- iceoryx2-0.7.0/iceoryx2-bb/memory/src/heap_allocator.rs +81 -0
- iceoryx2-0.7.0/iceoryx2-bb/memory/src/lib.rs +20 -0
- iceoryx2-0.7.0/iceoryx2-bb/memory/src/one_chunk_allocator.rs +184 -0
- iceoryx2-0.7.0/iceoryx2-bb/memory/src/pool_allocator.rs +389 -0
- iceoryx2-0.7.0/iceoryx2-bb/memory/tests/bump_allocator_tests.rs +142 -0
- iceoryx2-0.7.0/iceoryx2-bb/memory/tests/heap_allocator_tests.rs +215 -0
- iceoryx2-0.7.0/iceoryx2-bb/memory/tests/one_chunk_allocator_tests.rs +369 -0
- iceoryx2-0.7.0/iceoryx2-bb/memory/tests/pool_allocator_tests.rs +528 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/BUILD.bazel +64 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/Cargo.toml +40 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/access_mode.rs +81 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/adaptive_wait.rs +211 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/barrier.rs +225 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/clock.rs +351 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/config.rs +296 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/creation_mode.rs +53 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/deadline_queue.rs +309 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/directory.rs +510 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/file.rs +1024 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/file_descriptor.rs +300 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/file_descriptor_set.rs +321 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/file_lock.rs +495 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/file_type.rs +48 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/group.rs +320 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/handle_errno.rs +103 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/ipc_capable.rs +184 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/lib.rs +96 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/memory.rs +192 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/memory_lock.rs +121 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/metadata.rs +112 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/mutex.rs +654 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/ownership.rs +95 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/permission.rs +208 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/process.rs +280 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/process_state.rs +833 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/read_write_mutex.rs +435 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/scheduler.rs +120 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/semaphore.rs +757 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/shared_memory.rs +646 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/signal.rs +614 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/socket_ancillary.rs +474 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/socket_pair.rs +494 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/system_configuration.rs +310 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/testing.rs +51 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/thread.rs +745 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/udp_socket.rs +725 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/unique_system_id.rs +187 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/unix_datagram_socket.rs +1064 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/src/user.rs +360 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/access_mode_tests.rs +42 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/adaptive_wait_tests.rs +132 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/barrier_tests.rs +53 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/clock_tests.rs +85 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/creation_mode_tests.rs +44 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/deadline_queue_tests.rs +227 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/directory_tests.rs +290 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/file_descriptor_set_tests.rs +260 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/file_descriptor_tests.rs +168 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/file_lock_tests.rs +354 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/file_tests.rs +454 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/file_type_tests.rs +30 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/group_tests.rs +69 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/ipc_capable_trait_tests.rs +200 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/memory_lock_tests.rs +45 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/memory_tests.rs +212 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/metadata_tests.rs +77 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/mutex_tests.rs +477 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/ownership_tests.rs +44 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/permission_tests.rs +36 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/process_state_tests.rs +358 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/process_tests.rs +59 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/read_write_mutex_tests.rs +150 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/scheduler_tests.rs +20 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/semaphore_tests.rs +445 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/shared_memory_tests.rs +276 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/signal_tests.rs +314 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/socket_ancillary_tests.rs +126 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/socket_pair_tests.rs +400 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/thread_tests.rs +400 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/udp_socket_tests.rs +407 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/unique_system_id_tests.rs +72 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/unix_datagram_socket_tests.rs +369 -0
- iceoryx2-0.7.0/iceoryx2-bb/posix/tests/users_tests.rs +42 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/BUILD.bazel +48 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/Cargo.toml +25 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/src/base64url.rs +49 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/src/file_name.rs +303 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/src/file_path.rs +151 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/src/group_name.rs +59 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/src/ipv4_address.rs +127 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/src/lib.rs +26 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/src/path.rs +195 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/src/port.rs +54 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/src/user_name.rs +62 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/tests/base64url_tests.rs +70 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/tests/file_name_tests.rs +94 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/tests/file_path_tests.rs +233 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/tests/group_name_tests.rs +45 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/tests/ipv4_address_tests.rs +95 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/tests/path_tests.rs +235 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/tests/port_tests.rs +50 -0
- iceoryx2-0.7.0/iceoryx2-bb/system-types/tests/user_name_tests.rs +45 -0
- iceoryx2-0.7.0/iceoryx2-bb/testing/BUILD.bazel +30 -0
- iceoryx2-0.7.0/iceoryx2-bb/testing/Cargo.toml +16 -0
- iceoryx2-0.7.0/iceoryx2-bb/testing/src/lib.rs +19 -0
- iceoryx2-0.7.0/iceoryx2-bb/testing/src/lifetime_tracker.rs +78 -0
- iceoryx2-0.7.0/iceoryx2-cal/BUILD.bazel +76 -0
- iceoryx2-0.7.0/iceoryx2-cal/Cargo.toml +44 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/arc_sync_policy/mod.rs +88 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/arc_sync_policy/mutex_protected.rs +99 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/arc_sync_policy/single_threaded.rs +65 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/arc_sync_policy/single_threaded_compile_tests.rs +37 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/communication_channel/mod.rs +205 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/communication_channel/posix_shared_memory.rs +331 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/communication_channel/process_local.rs +426 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/communication_channel/recommended.rs +21 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/communication_channel/unix_datagram.rs +445 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/dynamic_storage/dynamic_storage_configuration.rs +81 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/dynamic_storage/mod.rs +191 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/dynamic_storage/posix_shared_memory.rs +545 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/dynamic_storage/process_local.rs +529 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/dynamic_storage/recommended.rs +21 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/event/common.rs +649 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/event/id_tracker/bit_set.rs +42 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/event/id_tracker/mod.rs +51 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/event/mod.rs +153 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/event/process_local_socketpair.rs +495 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/event/recommended.rs +19 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/event/sem_bitset_posix_shared_memory.rs +20 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/event/sem_bitset_process_local.rs +20 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/event/signal_mechanism/mod.rs +70 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/event/signal_mechanism/semaphore.rs +99 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/event/unix_datagram_socket.rs +387 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/hash/mod.rs +72 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/hash/recommended.rs +16 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/hash/sha1.rs +38 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/lib.rs +36 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/monitoring/file_lock.rs +360 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/monitoring/mod.rs +180 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/monitoring/process_local.rs +317 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/monitoring/recommended.rs +21 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/monitoring/testing.rs +15 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/named_concept.rs +217 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/reactor/mod.rs +75 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/reactor/posix_select.rs +175 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/reactor/recommended.rs +21 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/resizable_shared_memory/dynamic.rs +753 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/resizable_shared_memory/mod.rs +258 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/resizable_shared_memory/recommended.rs +27 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/serialize/cdr.rs +39 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/serialize/mod.rs +65 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/serialize/postcard.rs +48 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/serialize/recommended.rs +20 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/serialize/toml.rs +50 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shared_memory/common.rs +463 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shared_memory/mod.rs +201 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shared_memory/posix.rs +18 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shared_memory/process_local.rs +18 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shared_memory/recommended.rs +21 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shared_memory_directory/decision_counter.rs +52 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shared_memory_directory/file.rs +119 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shared_memory_directory/file_reference_set.rs +249 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shared_memory_directory/mod.rs +277 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shared_memory_directory/reference_counter.rs +280 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shm_allocator/bump_allocator.rs +140 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shm_allocator/mod.rs +147 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shm_allocator/pointer_offset.rs +96 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/shm_allocator/pool_allocator.rs +215 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/static_storage/file.rs +466 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/static_storage/mod.rs +132 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/static_storage/process_local.rs +389 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/static_storage/recommended.rs +21 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/testing.rs +68 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/zero_copy_connection/common.rs +1061 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/zero_copy_connection/mod.rs +251 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/zero_copy_connection/posix_shared_memory.rs +17 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/zero_copy_connection/process_local.rs +17 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/zero_copy_connection/recommended.rs +21 -0
- iceoryx2-0.7.0/iceoryx2-cal/src/zero_copy_connection/used_chunk_list.rs +206 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/arc_sync_policy_trait_tests.rs +63 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/communication_channel_trait_tests.rs +508 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/dynamic_storage_posix_shared_memory_tests.rs +105 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/dynamic_storage_trait_tests.rs +905 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/event_id_tracker_tests.rs +162 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/event_signal_mechanism_tests.rs +109 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/event_tests.rs +750 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/monitoring_tests.rs +192 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/pointer_offset_tests.rs +50 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/reactor_tests.rs +576 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/resizable_shared_memory_tests.rs +992 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/serialize_trait_tests.rs +49 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/shared_memory_directory_tests.rs +474 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/shared_memory_posix_shared_memory_tests.rs +50 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/shared_memory_trait_tests.rs +404 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/shm_allocator_bump_allocator_tests.rs +106 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/shm_allocator_pool_allocator_tests.rs +302 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/shm_allocator_trait_tests.rs +187 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/static_storage_file_tests.rs +144 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/static_storage_trait_tests.rs +549 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/used_chunk_list_tests.rs +66 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/zero_copy_connection_posix_shared_memory_tests.rs +60 -0
- iceoryx2-0.7.0/iceoryx2-cal/tests/zero_copy_connection_trait_tests.rs +1942 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/BUILD.bazel +20 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/Cargo.toml +25 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/README.md +201 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/poetry.lock +1633 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/py.typed +0 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/python-src/iceoryx2/__init__.py +18 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/python-src/iceoryx2/publish_subscribe_extensions.py +182 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/python-src/iceoryx2/request_response_extensions.py +357 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/python-src/iceoryx2/slice.py +63 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/python-src/iceoryx2/type_name.py +49 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/active_request.rs +208 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/alignment.rs +40 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/allocation_strategy.rs +55 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/attribute.rs +43 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/attribute_key.rs +46 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/attribute_set.rs +58 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/attribute_specifier.rs +50 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/attribute_value.rs +46 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/attribute_verifier.rs +79 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/cleanup_state.rs +36 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/client.rs +166 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/config.rs +1114 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/duration.rs +91 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/error.rs +252 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/event_id.rs +34 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/file_descriptor.rs +59 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/file_name.rs +48 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/file_path.rs +48 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/header_publish_subscribe.rs +41 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/lib.rs +322 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/listener.rs +183 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/log.rs +35 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/log_level.rs +58 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/message_type_details.rs +43 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/messaging_pattern.rs +59 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/node.rs +185 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/node_builder.rs +78 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/node_id.rs +37 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/node_name.rs +43 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/node_state.rs +145 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/notifier.rs +100 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/parc.rs +52 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/path.rs +48 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/pending_response.rs +209 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/port_factory_client.rs +222 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/port_factory_event.rs +137 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/port_factory_listener.rs +96 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/port_factory_notifier.rs +116 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/port_factory_publish_subscribe.rs +181 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/port_factory_publisher.rs +211 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/port_factory_request_response.rs +178 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/port_factory_server.rs +243 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/port_factory_subscriber.rs +151 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/publisher.rs +151 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/request_header.rs +34 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/request_mut.rs +171 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/request_mut_uninit.rs +170 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/response.rs +120 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/response_header.rs +34 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/response_mut.rs +135 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/response_mut_uninit.rs +156 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/sample.rs +115 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/sample_mut.rs +151 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/sample_mut_uninit.rs +157 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/server.rs +173 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/service.rs +102 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/service_builder.rs +91 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/service_builder_event.rs +374 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/service_builder_publish_subscribe.rs +452 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/service_builder_request_response.rs +612 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/service_details.rs +140 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/service_id.rs +32 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/service_name.rs +46 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/service_type.rs +34 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/signal_handling_mode.rs +54 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/static_config_event.rs +74 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/static_config_publish_subscribe.rs +76 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/static_config_request_response.rs +103 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/subscriber.rs +133 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/testing.rs +41 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/type_detail.rs +73 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/type_name.rs +49 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/type_storage.rs +41 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/type_variant.rs +54 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/unable_to_deliver_strategy.rs +54 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/unique_client_id.rs +27 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/unique_listener_id.rs +27 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/unique_notifier_id.rs +27 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/unique_publisher_id.rs +27 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/unique_server_id.rs +27 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/unique_subscriber_id.rs +27 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/waitset.rs +412 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/waitset_attachment_id.rs +93 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/waitset_builder.rs +59 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/waitset_guard.rs +60 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/src/waitset_run_result.rs +64 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/attribute_tests.py +42 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/client_tests.py +138 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/config_tests.py +419 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/duration_tests.py +56 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/file_name_tests.py +25 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/file_path_tests.py +25 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/get_typename_tests.py +46 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/node_name_tests.py +25 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/node_tests.py +96 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/path_tests.py +25 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/publisher_tests.py +159 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/server_tests.py +142 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/service_builder_event_tests.py +263 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/service_builder_publish_subscribe_tests.py +327 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/service_builder_request_response_tests.py +397 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/service_event_tests.py +213 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/service_name_tests.py +25 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/service_publish_subscribe_tests.py +329 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/service_request_response_tests.py +494 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/slice_tests.py +51 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/subscriber_tests.py +102 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/type_name_tests.py +25 -0
- iceoryx2-0.7.0/iceoryx2-ffi/python/tests/waitset_tests.py +251 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/BUILD.bazel +37 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/Cargo.toml +17 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/src/barrier.rs +59 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/src/condition_variable.rs +75 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/src/iox_atomic.rs +378 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/src/lib.rs +34 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/src/mutex.rs +96 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/src/rwlock.rs +320 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/src/semaphore.rs +95 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/tests/barrier_tests.rs +56 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/tests/condition_variable_tests.rs +232 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/tests/iox_atomic_tests.rs +631 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/tests/mutex_tests.rs +65 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/tests/rwlock_tests.rs +368 -0
- iceoryx2-0.7.0/iceoryx2-pal/concurrency-sync/tests/semaphore_tests.rs +77 -0
- iceoryx2-0.7.0/iceoryx2-pal/configuration/BUILD.bazel +25 -0
- iceoryx2-0.7.0/iceoryx2-pal/configuration/Cargo.toml +13 -0
- iceoryx2-0.7.0/iceoryx2-pal/configuration/src/lib.rs +65 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/BUILD.bazel +83 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/Cargo.toml +35 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/bazel_bindgen_workaround.rs +17 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/build.rs +111 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/c/.clang-tidy +5 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/c/posix.h +61 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/c/socket_macros.c +62 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/common/cpu_set_t.rs +52 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/common/error_enum_generator.rs +72 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/common/mem_zeroed_struct.rs +17 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/common/mod.rs +20 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/common/scandir.rs +74 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/common/sockaddr_in.rs +16 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/common/string_operations.rs +33 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/constants.rs +360 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/dirent.rs +44 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/errno.rs +176 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/fcntl.rs +52 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/mman.rs +194 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/mod.rs +56 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/pthread.rs +273 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/pwd.rs +55 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/resource.rs +24 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/sched.rs +44 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/select.rs +79 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/semaphore.rs +56 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/settings.rs +15 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/signal.rs +63 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/socket.rs +106 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/stat.rs +32 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/stdio.rs +20 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/stdlib.rs +32 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/string.rs +28 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/support.rs +25 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/time.rs +33 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/types.rs +203 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/freebsd/unistd.rs +96 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/lib.rs +78 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/constants.rs +361 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/dirent.rs +48 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/errno.rs +174 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/fcntl.rs +52 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/mman.rs +96 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/mod.rs +55 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/pthread.rs +246 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/pwd.rs +55 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/resource.rs +24 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/sched.rs +44 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/select.rs +62 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/semaphore.rs +56 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/signal.rs +65 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/socket.rs +99 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/stat.rs +32 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/stdio.rs +20 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/stdlib.rs +32 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/string.rs +28 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/support.rs +25 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/time.rs +33 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/types.rs +201 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/libc/unistd.rs +94 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/constants.rs +366 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/dirent.rs +48 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/errno.rs +174 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/fcntl.rs +52 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/mman.rs +98 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/mod.rs +55 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/pthread.rs +276 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/pwd.rs +55 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/resource.rs +24 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/sched.rs +44 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/select.rs +79 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/semaphore.rs +56 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/signal.rs +64 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/socket.rs +99 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/stat.rs +32 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/stdio.rs +20 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/stdlib.rs +32 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/string.rs +28 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/support.rs +25 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/time.rs +33 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/types.rs +202 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/linux/unistd.rs +94 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/constants.rs +364 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/dirent.rs +52 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/errno.rs +186 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/fcntl.rs +66 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/mman.rs +259 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/mod.rs +56 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/pthread.rs +782 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/pwd.rs +55 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/resource.rs +24 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/sched.rs +48 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/select.rs +97 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/semaphore.rs +107 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/settings.rs +16 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/signal.rs +63 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/socket.rs +105 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/stat.rs +32 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/stdio.rs +20 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/stdlib.rs +32 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/string.rs +28 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/support.rs +25 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/time.rs +64 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/types.rs +277 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/macos/unistd.rs +108 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/README.md +22 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/constants.rs +364 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/dirent.rs +55 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/errno.rs +197 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/fcntl.rs +82 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/mman.rs +149 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/mod.rs +55 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/pthread.rs +476 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/pwd.rs +55 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/resource.rs +50 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/sched.rs +44 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/select.rs +79 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/semaphore.rs +56 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/signal.rs +64 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/socket.rs +99 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/stat.rs +50 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/stdio.rs +20 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/stdlib.rs +32 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/string.rs +28 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/support.rs +25 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/time.rs +33 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/types.rs +222 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/qnx/unistd.rs +133 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/constants.rs +358 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/dirent.rs +140 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/errno.rs +188 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/fcntl.rs +364 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/mman.rs +385 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/mod.rs +62 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/pthread.rs +853 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/pwd.rs +57 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/resource.rs +25 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/sched.rs +48 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/select.rs +199 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/semaphore.rs +128 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/settings.rs +19 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/signal.rs +179 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/socket.rs +615 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/stat.rs +62 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/stdio.rs +37 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/stdlib.rs +32 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/string.rs +28 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/support.rs +25 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/time.rs +73 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/types.rs +323 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/unistd.rs +376 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/win32_call.rs +183 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/win32_handle_translator.rs +409 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/win32_security_attributes.rs +476 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/src/windows/win32_udp_port_to_uds_name.rs +459 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/tests/win32_security_attributes_tests.rs +68 -0
- iceoryx2-0.7.0/iceoryx2-pal/posix/tests/win32_select_tests.rs +124 -0
- iceoryx2-0.7.0/iceoryx2-pal/testing/BUILD.bazel +28 -0
- iceoryx2-0.7.0/iceoryx2-pal/testing/Cargo.toml +14 -0
- iceoryx2-0.7.0/iceoryx2-pal/testing/src/assert.rs +358 -0
- iceoryx2-0.7.0/iceoryx2-pal/testing/src/lib.rs +44 -0
- iceoryx2-0.7.0/iceoryx2-pal/testing/src/memory.rs +91 -0
- iceoryx2-0.7.0/iceoryx2-pal/testing/src/watchdog.rs +62 -0
- iceoryx2-0.7.0/pyproject.toml +137 -0
- iceoryx2-0.7.0/python-src/iceoryx2/__init__.py +18 -0
- iceoryx2-0.7.0/python-src/iceoryx2/publish_subscribe_extensions.py +182 -0
- iceoryx2-0.7.0/python-src/iceoryx2/request_response_extensions.py +357 -0
- iceoryx2-0.7.0/python-src/iceoryx2/slice.py +63 -0
- iceoryx2-0.7.0/python-src/iceoryx2/type_name.py +49 -0
|
@@ -0,0 +1,4904 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.24.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.0"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "aes"
|
|
22
|
+
version = "0.8.4"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"cfg-if",
|
|
27
|
+
"cipher",
|
|
28
|
+
"cpufeatures",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "ahash"
|
|
33
|
+
version = "0.8.11"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"cfg-if",
|
|
38
|
+
"getrandom 0.2.15",
|
|
39
|
+
"once_cell",
|
|
40
|
+
"version_check",
|
|
41
|
+
"zerocopy 0.7.35",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "aho-corasick"
|
|
46
|
+
version = "1.1.3"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"memchr",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "allocator-api2"
|
|
55
|
+
version = "0.2.21"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "android-tzdata"
|
|
61
|
+
version = "0.1.1"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "android_system_properties"
|
|
67
|
+
version = "0.1.5"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"libc",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "anstream"
|
|
76
|
+
version = "0.6.15"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"anstyle",
|
|
81
|
+
"anstyle-parse",
|
|
82
|
+
"anstyle-query",
|
|
83
|
+
"anstyle-wincon",
|
|
84
|
+
"colorchoice",
|
|
85
|
+
"is_terminal_polyfill",
|
|
86
|
+
"utf8parse",
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "anstyle"
|
|
91
|
+
version = "1.0.8"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "anstyle-parse"
|
|
97
|
+
version = "0.2.5"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
|
|
100
|
+
dependencies = [
|
|
101
|
+
"utf8parse",
|
|
102
|
+
]
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "anstyle-query"
|
|
106
|
+
version = "1.1.1"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
|
|
109
|
+
dependencies = [
|
|
110
|
+
"windows-sys 0.52.0",
|
|
111
|
+
]
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "anstyle-wincon"
|
|
115
|
+
version = "3.0.4"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
|
|
118
|
+
dependencies = [
|
|
119
|
+
"anstyle",
|
|
120
|
+
"windows-sys 0.52.0",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "anyhow"
|
|
125
|
+
version = "1.0.89"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "arc-swap"
|
|
131
|
+
version = "1.7.1"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "array-init"
|
|
137
|
+
version = "2.1.0"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc"
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "asn1-rs"
|
|
143
|
+
version = "0.6.2"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"asn1-rs-derive",
|
|
148
|
+
"asn1-rs-impl",
|
|
149
|
+
"displaydoc",
|
|
150
|
+
"nom",
|
|
151
|
+
"num-traits",
|
|
152
|
+
"rusticata-macros",
|
|
153
|
+
"thiserror 1.0.64",
|
|
154
|
+
"time",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "asn1-rs-derive"
|
|
159
|
+
version = "0.5.1"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490"
|
|
162
|
+
dependencies = [
|
|
163
|
+
"proc-macro2",
|
|
164
|
+
"quote",
|
|
165
|
+
"syn 2.0.87",
|
|
166
|
+
"synstructure",
|
|
167
|
+
]
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "asn1-rs-impl"
|
|
171
|
+
version = "0.2.0"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"proc-macro2",
|
|
176
|
+
"quote",
|
|
177
|
+
"syn 2.0.87",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "async-trait"
|
|
182
|
+
version = "0.1.88"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
|
185
|
+
dependencies = [
|
|
186
|
+
"proc-macro2",
|
|
187
|
+
"quote",
|
|
188
|
+
"syn 2.0.87",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "autocfg"
|
|
193
|
+
version = "1.4.0"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "backtrace"
|
|
199
|
+
version = "0.3.74"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"addr2line",
|
|
204
|
+
"cfg-if",
|
|
205
|
+
"libc",
|
|
206
|
+
"miniz_oxide",
|
|
207
|
+
"object",
|
|
208
|
+
"rustc-demangle",
|
|
209
|
+
"windows-targets 0.52.6",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "base64"
|
|
214
|
+
version = "0.21.7"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "base64"
|
|
220
|
+
version = "0.22.1"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "base64ct"
|
|
226
|
+
version = "1.7.3"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3"
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "benchmark-event"
|
|
232
|
+
version = "0.7.0"
|
|
233
|
+
dependencies = [
|
|
234
|
+
"clap",
|
|
235
|
+
"iceoryx2",
|
|
236
|
+
"iceoryx2-bb-log",
|
|
237
|
+
"iceoryx2-bb-posix",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "benchmark-publish-subscribe"
|
|
242
|
+
version = "0.7.0"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"clap",
|
|
245
|
+
"iceoryx2",
|
|
246
|
+
"iceoryx2-bb-container",
|
|
247
|
+
"iceoryx2-bb-log",
|
|
248
|
+
"iceoryx2-bb-posix",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "benchmark-queue"
|
|
253
|
+
version = "0.7.0"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"clap",
|
|
256
|
+
"iceoryx2-bb-lock-free",
|
|
257
|
+
"iceoryx2-bb-posix",
|
|
258
|
+
]
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "benchmark-request-response"
|
|
262
|
+
version = "0.7.0"
|
|
263
|
+
dependencies = [
|
|
264
|
+
"clap",
|
|
265
|
+
"iceoryx2",
|
|
266
|
+
"iceoryx2-bb-container",
|
|
267
|
+
"iceoryx2-bb-log",
|
|
268
|
+
"iceoryx2-bb-posix",
|
|
269
|
+
]
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "better-panic"
|
|
273
|
+
version = "0.3.0"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "6fa9e1d11a268684cbd90ed36370d7577afb6c62d912ddff5c15fc34343e5036"
|
|
276
|
+
dependencies = [
|
|
277
|
+
"backtrace",
|
|
278
|
+
"console 0.15.10",
|
|
279
|
+
]
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "bindgen"
|
|
283
|
+
version = "0.72.0"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "4f72209734318d0b619a5e0f5129918b848c416e122a3c4ce054e03cb87b726f"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"bitflags",
|
|
288
|
+
"cexpr",
|
|
289
|
+
"clang-sys",
|
|
290
|
+
"itertools",
|
|
291
|
+
"log",
|
|
292
|
+
"prettyplease",
|
|
293
|
+
"proc-macro2",
|
|
294
|
+
"quote",
|
|
295
|
+
"regex",
|
|
296
|
+
"rustc-hash",
|
|
297
|
+
"shlex",
|
|
298
|
+
"syn 2.0.87",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "bitflags"
|
|
303
|
+
version = "2.6.0"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"serde",
|
|
308
|
+
]
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "block-buffer"
|
|
312
|
+
version = "0.10.4"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
315
|
+
dependencies = [
|
|
316
|
+
"generic-array",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "bumpalo"
|
|
321
|
+
version = "3.17.0"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "byteorder"
|
|
327
|
+
version = "1.5.0"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "bytes"
|
|
333
|
+
version = "1.10.1"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "camino"
|
|
339
|
+
version = "1.1.9"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"serde",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "cargo-platform"
|
|
348
|
+
version = "0.1.8"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc"
|
|
351
|
+
dependencies = [
|
|
352
|
+
"serde",
|
|
353
|
+
]
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "cargo_metadata"
|
|
357
|
+
version = "0.18.1"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"camino",
|
|
362
|
+
"cargo-platform",
|
|
363
|
+
"semver",
|
|
364
|
+
"serde",
|
|
365
|
+
"serde_json",
|
|
366
|
+
"thiserror 1.0.64",
|
|
367
|
+
]
|
|
368
|
+
|
|
369
|
+
[[package]]
|
|
370
|
+
name = "cbindgen"
|
|
371
|
+
version = "0.27.0"
|
|
372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
+
checksum = "3fce8dd7fcfcbf3a0a87d8f515194b49d6135acab73e18bd380d1d93bb1a15eb"
|
|
374
|
+
dependencies = [
|
|
375
|
+
"clap",
|
|
376
|
+
"heck 0.4.1",
|
|
377
|
+
"indexmap 2.6.0",
|
|
378
|
+
"log",
|
|
379
|
+
"proc-macro2",
|
|
380
|
+
"quote",
|
|
381
|
+
"serde",
|
|
382
|
+
"serde_json",
|
|
383
|
+
"syn 2.0.87",
|
|
384
|
+
"tempfile",
|
|
385
|
+
"toml",
|
|
386
|
+
]
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "cc"
|
|
390
|
+
version = "1.2.21"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"shlex",
|
|
395
|
+
]
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "cdr"
|
|
399
|
+
version = "0.2.4"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "9617422bf43fde9280707a7e90f8f7494389c182f5c70b0f67592d0f06d41dfa"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"byteorder",
|
|
404
|
+
"serde",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "cesu8"
|
|
409
|
+
version = "1.1.0"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "cexpr"
|
|
415
|
+
version = "0.6.0"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"nom",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "cfg-if"
|
|
424
|
+
version = "1.0.0"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "cfg_aliases"
|
|
430
|
+
version = "0.2.1"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "chrono"
|
|
436
|
+
version = "0.4.41"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"android-tzdata",
|
|
441
|
+
"iana-time-zone",
|
|
442
|
+
"num-traits",
|
|
443
|
+
"serde",
|
|
444
|
+
"windows-link",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "cipher"
|
|
449
|
+
version = "0.4.4"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"crypto-common",
|
|
454
|
+
"inout",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "clang-sys"
|
|
459
|
+
version = "1.8.1"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
462
|
+
dependencies = [
|
|
463
|
+
"glob",
|
|
464
|
+
"libc",
|
|
465
|
+
"libloading",
|
|
466
|
+
]
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "clap"
|
|
470
|
+
version = "4.5.19"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "7be5744db7978a28d9df86a214130d106a89ce49644cbc4e3f0c22c3fba30615"
|
|
473
|
+
dependencies = [
|
|
474
|
+
"clap_builder",
|
|
475
|
+
"clap_derive",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "clap_builder"
|
|
480
|
+
version = "4.5.19"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "a5fbc17d3ef8278f55b282b2a2e75ae6f6c7d4bb70ed3d0382375104bfafdb4b"
|
|
483
|
+
dependencies = [
|
|
484
|
+
"anstream",
|
|
485
|
+
"anstyle",
|
|
486
|
+
"clap_lex",
|
|
487
|
+
"strsim",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "clap_derive"
|
|
492
|
+
version = "4.5.18"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
|
|
495
|
+
dependencies = [
|
|
496
|
+
"heck 0.5.0",
|
|
497
|
+
"proc-macro2",
|
|
498
|
+
"quote",
|
|
499
|
+
"syn 2.0.87",
|
|
500
|
+
]
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "clap_lex"
|
|
504
|
+
version = "0.7.2"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "cobs"
|
|
510
|
+
version = "0.3.0"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
513
|
+
dependencies = [
|
|
514
|
+
"thiserror 2.0.12",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "colorchoice"
|
|
519
|
+
version = "1.0.2"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "colored"
|
|
525
|
+
version = "2.1.0"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8"
|
|
528
|
+
dependencies = [
|
|
529
|
+
"lazy_static",
|
|
530
|
+
"windows-sys 0.48.0",
|
|
531
|
+
]
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "combine"
|
|
535
|
+
version = "4.6.7"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
538
|
+
dependencies = [
|
|
539
|
+
"bytes",
|
|
540
|
+
"memchr",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "concurrent-queue"
|
|
545
|
+
version = "2.5.0"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"crossbeam-utils",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "console"
|
|
554
|
+
version = "0.14.1"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"encode_unicode 0.3.6",
|
|
559
|
+
"lazy_static",
|
|
560
|
+
"libc",
|
|
561
|
+
"regex",
|
|
562
|
+
"terminal_size",
|
|
563
|
+
"unicode-width",
|
|
564
|
+
"winapi",
|
|
565
|
+
]
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "console"
|
|
569
|
+
version = "0.15.10"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b"
|
|
572
|
+
dependencies = [
|
|
573
|
+
"encode_unicode 1.0.0",
|
|
574
|
+
"libc",
|
|
575
|
+
"once_cell",
|
|
576
|
+
"windows-sys 0.59.0",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "const-oid"
|
|
581
|
+
version = "0.9.6"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "const_format"
|
|
587
|
+
version = "0.2.34"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "126f97965c8ad46d6d9163268ff28432e8f6a1196a55578867832e3049df63dd"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"const_format_proc_macros",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "const_format_proc_macros"
|
|
596
|
+
version = "0.2.34"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"proc-macro2",
|
|
601
|
+
"quote",
|
|
602
|
+
"unicode-xid",
|
|
603
|
+
]
|
|
604
|
+
|
|
605
|
+
[[package]]
|
|
606
|
+
name = "core-foundation"
|
|
607
|
+
version = "0.10.0"
|
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
+
checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
|
|
610
|
+
dependencies = [
|
|
611
|
+
"core-foundation-sys",
|
|
612
|
+
"libc",
|
|
613
|
+
]
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "core-foundation-sys"
|
|
617
|
+
version = "0.8.7"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "cpufeatures"
|
|
623
|
+
version = "0.2.17"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
626
|
+
dependencies = [
|
|
627
|
+
"libc",
|
|
628
|
+
]
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "crossbeam"
|
|
632
|
+
version = "0.8.4"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
|
|
635
|
+
dependencies = [
|
|
636
|
+
"crossbeam-channel",
|
|
637
|
+
"crossbeam-deque",
|
|
638
|
+
"crossbeam-epoch",
|
|
639
|
+
"crossbeam-queue",
|
|
640
|
+
"crossbeam-utils",
|
|
641
|
+
]
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "crossbeam-channel"
|
|
645
|
+
version = "0.5.15"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
648
|
+
dependencies = [
|
|
649
|
+
"crossbeam-utils",
|
|
650
|
+
]
|
|
651
|
+
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "crossbeam-deque"
|
|
654
|
+
version = "0.8.6"
|
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
657
|
+
dependencies = [
|
|
658
|
+
"crossbeam-epoch",
|
|
659
|
+
"crossbeam-utils",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "crossbeam-epoch"
|
|
664
|
+
version = "0.9.18"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"crossbeam-utils",
|
|
669
|
+
]
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "crossbeam-queue"
|
|
673
|
+
version = "0.3.12"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
676
|
+
dependencies = [
|
|
677
|
+
"crossbeam-utils",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "crossbeam-utils"
|
|
682
|
+
version = "0.8.21"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "crypto-common"
|
|
688
|
+
version = "0.1.6"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
691
|
+
dependencies = [
|
|
692
|
+
"generic-array",
|
|
693
|
+
"typenum",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "darling"
|
|
698
|
+
version = "0.20.11"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"darling_core",
|
|
703
|
+
"darling_macro",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "darling_core"
|
|
708
|
+
version = "0.20.11"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"fnv",
|
|
713
|
+
"ident_case",
|
|
714
|
+
"proc-macro2",
|
|
715
|
+
"quote",
|
|
716
|
+
"strsim",
|
|
717
|
+
"syn 2.0.87",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "darling_macro"
|
|
722
|
+
version = "0.20.11"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"darling_core",
|
|
727
|
+
"quote",
|
|
728
|
+
"syn 2.0.87",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "data-encoding"
|
|
733
|
+
version = "2.9.0"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "der"
|
|
739
|
+
version = "0.7.10"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"const-oid",
|
|
744
|
+
"pem-rfc7468",
|
|
745
|
+
"zeroize",
|
|
746
|
+
]
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "der-parser"
|
|
750
|
+
version = "9.0.0"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553"
|
|
753
|
+
dependencies = [
|
|
754
|
+
"asn1-rs",
|
|
755
|
+
"displaydoc",
|
|
756
|
+
"nom",
|
|
757
|
+
"num-bigint",
|
|
758
|
+
"num-traits",
|
|
759
|
+
"rusticata-macros",
|
|
760
|
+
]
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "deranged"
|
|
764
|
+
version = "0.4.0"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"powerfmt",
|
|
769
|
+
"serde",
|
|
770
|
+
]
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "dialoguer"
|
|
774
|
+
version = "0.8.0"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "c9dd058f8b65922819fabb4a41e7d1964e56344042c26efbccd465202c23fa0c"
|
|
777
|
+
dependencies = [
|
|
778
|
+
"console 0.14.1",
|
|
779
|
+
"lazy_static",
|
|
780
|
+
"tempfile",
|
|
781
|
+
"zeroize",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "digest"
|
|
786
|
+
version = "0.10.7"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
789
|
+
dependencies = [
|
|
790
|
+
"block-buffer",
|
|
791
|
+
"const-oid",
|
|
792
|
+
"crypto-common",
|
|
793
|
+
"subtle",
|
|
794
|
+
]
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "dirs"
|
|
798
|
+
version = "5.0.1"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
801
|
+
dependencies = [
|
|
802
|
+
"dirs-sys",
|
|
803
|
+
]
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "dirs-sys"
|
|
807
|
+
version = "0.4.1"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
810
|
+
dependencies = [
|
|
811
|
+
"libc",
|
|
812
|
+
"option-ext",
|
|
813
|
+
"redox_users",
|
|
814
|
+
"windows-sys 0.48.0",
|
|
815
|
+
]
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "displaydoc"
|
|
819
|
+
version = "0.2.5"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
822
|
+
dependencies = [
|
|
823
|
+
"proc-macro2",
|
|
824
|
+
"quote",
|
|
825
|
+
"syn 2.0.87",
|
|
826
|
+
]
|
|
827
|
+
|
|
828
|
+
[[package]]
|
|
829
|
+
name = "dyn-clone"
|
|
830
|
+
version = "1.0.19"
|
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
+
checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "either"
|
|
836
|
+
version = "1.13.0"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "embedded-io"
|
|
842
|
+
version = "0.4.0"
|
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
845
|
+
|
|
846
|
+
[[package]]
|
|
847
|
+
name = "embedded-io"
|
|
848
|
+
version = "0.6.1"
|
|
849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
+
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
851
|
+
|
|
852
|
+
[[package]]
|
|
853
|
+
name = "encode_unicode"
|
|
854
|
+
version = "0.3.6"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "encode_unicode"
|
|
860
|
+
version = "1.0.0"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
863
|
+
|
|
864
|
+
[[package]]
|
|
865
|
+
name = "enum-iterator"
|
|
866
|
+
version = "2.1.0"
|
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
+
checksum = "c280b9e6b3ae19e152d8e31cf47f18389781e119d4013a2a2bb0180e5facc635"
|
|
869
|
+
dependencies = [
|
|
870
|
+
"enum-iterator-derive",
|
|
871
|
+
]
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "enum-iterator-derive"
|
|
875
|
+
version = "1.4.0"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"proc-macro2",
|
|
880
|
+
"quote",
|
|
881
|
+
"syn 2.0.87",
|
|
882
|
+
]
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "equivalent"
|
|
886
|
+
version = "1.0.1"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "errno"
|
|
892
|
+
version = "0.3.9"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
895
|
+
dependencies = [
|
|
896
|
+
"libc",
|
|
897
|
+
"windows-sys 0.52.0",
|
|
898
|
+
]
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "event-listener"
|
|
902
|
+
version = "5.4.0"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"concurrent-queue",
|
|
907
|
+
"parking",
|
|
908
|
+
"pin-project-lite",
|
|
909
|
+
]
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "example"
|
|
913
|
+
version = "0.7.0"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"clap",
|
|
916
|
+
"iceoryx2",
|
|
917
|
+
"iceoryx2-bb-container",
|
|
918
|
+
"iceoryx2-bb-derive-macros",
|
|
919
|
+
"iceoryx2-bb-elementary",
|
|
920
|
+
"iceoryx2-bb-elementary-traits",
|
|
921
|
+
"iceoryx2-bb-log",
|
|
922
|
+
"iceoryx2-bb-system-types",
|
|
923
|
+
"iceoryx2-services-discovery",
|
|
924
|
+
]
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "fastrand"
|
|
928
|
+
version = "2.1.1"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "fixedbitset"
|
|
934
|
+
version = "0.4.2"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "flume"
|
|
940
|
+
version = "0.11.1"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
|
|
943
|
+
dependencies = [
|
|
944
|
+
"futures-core",
|
|
945
|
+
"futures-sink",
|
|
946
|
+
"nanorand",
|
|
947
|
+
"spin",
|
|
948
|
+
]
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "fnv"
|
|
952
|
+
version = "1.0.7"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "form_urlencoded"
|
|
958
|
+
version = "1.2.1"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
961
|
+
dependencies = [
|
|
962
|
+
"percent-encoding",
|
|
963
|
+
]
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "futures"
|
|
967
|
+
version = "0.3.31"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"futures-channel",
|
|
972
|
+
"futures-core",
|
|
973
|
+
"futures-executor",
|
|
974
|
+
"futures-io",
|
|
975
|
+
"futures-sink",
|
|
976
|
+
"futures-task",
|
|
977
|
+
"futures-util",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "futures-channel"
|
|
982
|
+
version = "0.3.31"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
985
|
+
dependencies = [
|
|
986
|
+
"futures-core",
|
|
987
|
+
"futures-sink",
|
|
988
|
+
]
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "futures-core"
|
|
992
|
+
version = "0.3.31"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "futures-executor"
|
|
998
|
+
version = "0.3.31"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
1001
|
+
dependencies = [
|
|
1002
|
+
"futures-core",
|
|
1003
|
+
"futures-task",
|
|
1004
|
+
"futures-util",
|
|
1005
|
+
]
|
|
1006
|
+
|
|
1007
|
+
[[package]]
|
|
1008
|
+
name = "futures-io"
|
|
1009
|
+
version = "0.3.31"
|
|
1010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "futures-macro"
|
|
1015
|
+
version = "0.3.31"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"proc-macro2",
|
|
1020
|
+
"quote",
|
|
1021
|
+
"syn 2.0.87",
|
|
1022
|
+
]
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "futures-sink"
|
|
1026
|
+
version = "0.3.31"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "futures-task"
|
|
1032
|
+
version = "0.3.31"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "futures-util"
|
|
1038
|
+
version = "0.3.31"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1041
|
+
dependencies = [
|
|
1042
|
+
"futures-channel",
|
|
1043
|
+
"futures-core",
|
|
1044
|
+
"futures-io",
|
|
1045
|
+
"futures-macro",
|
|
1046
|
+
"futures-sink",
|
|
1047
|
+
"futures-task",
|
|
1048
|
+
"memchr",
|
|
1049
|
+
"pin-project-lite",
|
|
1050
|
+
"pin-utils",
|
|
1051
|
+
"slab",
|
|
1052
|
+
]
|
|
1053
|
+
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "generic-array"
|
|
1056
|
+
version = "0.14.7"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1059
|
+
dependencies = [
|
|
1060
|
+
"typenum",
|
|
1061
|
+
"version_check",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "generic-tests"
|
|
1066
|
+
version = "0.1.2"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "eeb39ec0dacc89541b6eced815ab9e97f6b7d44078628abb090c6437763fd050"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"proc-macro2",
|
|
1071
|
+
"quote",
|
|
1072
|
+
"syn 1.0.109",
|
|
1073
|
+
]
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "getrandom"
|
|
1077
|
+
version = "0.2.15"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
1080
|
+
dependencies = [
|
|
1081
|
+
"cfg-if",
|
|
1082
|
+
"js-sys",
|
|
1083
|
+
"libc",
|
|
1084
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1085
|
+
"wasm-bindgen",
|
|
1086
|
+
]
|
|
1087
|
+
|
|
1088
|
+
[[package]]
|
|
1089
|
+
name = "getrandom"
|
|
1090
|
+
version = "0.3.2"
|
|
1091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
|
1093
|
+
dependencies = [
|
|
1094
|
+
"cfg-if",
|
|
1095
|
+
"js-sys",
|
|
1096
|
+
"libc",
|
|
1097
|
+
"r-efi",
|
|
1098
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
1099
|
+
"wasm-bindgen",
|
|
1100
|
+
]
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "gimli"
|
|
1104
|
+
version = "0.31.1"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "git-version"
|
|
1110
|
+
version = "0.3.9"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "1ad568aa3db0fcbc81f2f116137f263d7304f512a1209b35b85150d3ef88ad19"
|
|
1113
|
+
dependencies = [
|
|
1114
|
+
"git-version-macro",
|
|
1115
|
+
]
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "git-version-macro"
|
|
1119
|
+
version = "0.3.9"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "53010ccb100b96a67bc32c0175f0ed1426b31b655d562898e57325f81c023ac0"
|
|
1122
|
+
dependencies = [
|
|
1123
|
+
"proc-macro2",
|
|
1124
|
+
"quote",
|
|
1125
|
+
"syn 2.0.87",
|
|
1126
|
+
]
|
|
1127
|
+
|
|
1128
|
+
[[package]]
|
|
1129
|
+
name = "glob"
|
|
1130
|
+
version = "0.3.1"
|
|
1131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "hashbrown"
|
|
1136
|
+
version = "0.12.3"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "hashbrown"
|
|
1142
|
+
version = "0.14.5"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1145
|
+
dependencies = [
|
|
1146
|
+
"ahash",
|
|
1147
|
+
"allocator-api2",
|
|
1148
|
+
]
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "hashbrown"
|
|
1152
|
+
version = "0.15.2"
|
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
1155
|
+
|
|
1156
|
+
[[package]]
|
|
1157
|
+
name = "heck"
|
|
1158
|
+
version = "0.4.1"
|
|
1159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "heck"
|
|
1164
|
+
version = "0.5.0"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "hermit-abi"
|
|
1170
|
+
version = "0.3.9"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
1173
|
+
|
|
1174
|
+
[[package]]
|
|
1175
|
+
name = "hex"
|
|
1176
|
+
version = "0.4.3"
|
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "hmac"
|
|
1182
|
+
version = "0.12.1"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1185
|
+
dependencies = [
|
|
1186
|
+
"digest",
|
|
1187
|
+
]
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "home"
|
|
1191
|
+
version = "0.5.9"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
|
1194
|
+
dependencies = [
|
|
1195
|
+
"windows-sys 0.52.0",
|
|
1196
|
+
]
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "http"
|
|
1200
|
+
version = "1.3.1"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
1203
|
+
dependencies = [
|
|
1204
|
+
"bytes",
|
|
1205
|
+
"fnv",
|
|
1206
|
+
"itoa",
|
|
1207
|
+
]
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "httparse"
|
|
1211
|
+
version = "1.10.1"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "human-panic"
|
|
1217
|
+
version = "2.0.2"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "80b84a66a325082740043a6c28bbea400c129eac0d3a27673a1de971e44bf1f7"
|
|
1220
|
+
dependencies = [
|
|
1221
|
+
"anstream",
|
|
1222
|
+
"anstyle",
|
|
1223
|
+
"backtrace",
|
|
1224
|
+
"os_info",
|
|
1225
|
+
"serde",
|
|
1226
|
+
"serde_derive",
|
|
1227
|
+
"toml",
|
|
1228
|
+
"uuid",
|
|
1229
|
+
]
|
|
1230
|
+
|
|
1231
|
+
[[package]]
|
|
1232
|
+
name = "humantime"
|
|
1233
|
+
version = "2.2.0"
|
|
1234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
+
checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "iana-time-zone"
|
|
1239
|
+
version = "0.1.63"
|
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
|
1242
|
+
dependencies = [
|
|
1243
|
+
"android_system_properties",
|
|
1244
|
+
"core-foundation-sys",
|
|
1245
|
+
"iana-time-zone-haiku",
|
|
1246
|
+
"js-sys",
|
|
1247
|
+
"log",
|
|
1248
|
+
"wasm-bindgen",
|
|
1249
|
+
"windows-core",
|
|
1250
|
+
]
|
|
1251
|
+
|
|
1252
|
+
[[package]]
|
|
1253
|
+
name = "iana-time-zone-haiku"
|
|
1254
|
+
version = "0.1.2"
|
|
1255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1257
|
+
dependencies = [
|
|
1258
|
+
"cc",
|
|
1259
|
+
]
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "iceoryx2"
|
|
1263
|
+
version = "0.7.0"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"generic-tests",
|
|
1266
|
+
"iceoryx2-bb-container",
|
|
1267
|
+
"iceoryx2-bb-derive-macros",
|
|
1268
|
+
"iceoryx2-bb-elementary",
|
|
1269
|
+
"iceoryx2-bb-elementary-traits",
|
|
1270
|
+
"iceoryx2-bb-lock-free",
|
|
1271
|
+
"iceoryx2-bb-log",
|
|
1272
|
+
"iceoryx2-bb-memory",
|
|
1273
|
+
"iceoryx2-bb-posix",
|
|
1274
|
+
"iceoryx2-bb-system-types",
|
|
1275
|
+
"iceoryx2-bb-testing",
|
|
1276
|
+
"iceoryx2-cal",
|
|
1277
|
+
"iceoryx2-pal-concurrency-sync",
|
|
1278
|
+
"iceoryx2-pal-configuration",
|
|
1279
|
+
"iceoryx2-pal-testing",
|
|
1280
|
+
"serde",
|
|
1281
|
+
"tiny-fn",
|
|
1282
|
+
"toml",
|
|
1283
|
+
]
|
|
1284
|
+
|
|
1285
|
+
[[package]]
|
|
1286
|
+
name = "iceoryx2-bb-container"
|
|
1287
|
+
version = "0.7.0"
|
|
1288
|
+
dependencies = [
|
|
1289
|
+
"generic-tests",
|
|
1290
|
+
"iceoryx2-bb-derive-macros",
|
|
1291
|
+
"iceoryx2-bb-elementary",
|
|
1292
|
+
"iceoryx2-bb-elementary-traits",
|
|
1293
|
+
"iceoryx2-bb-log",
|
|
1294
|
+
"iceoryx2-bb-testing",
|
|
1295
|
+
"iceoryx2-pal-concurrency-sync",
|
|
1296
|
+
"iceoryx2-pal-testing",
|
|
1297
|
+
"serde",
|
|
1298
|
+
"serde_test",
|
|
1299
|
+
]
|
|
1300
|
+
|
|
1301
|
+
[[package]]
|
|
1302
|
+
name = "iceoryx2-bb-derive-macros"
|
|
1303
|
+
version = "0.7.0"
|
|
1304
|
+
dependencies = [
|
|
1305
|
+
"iceoryx2-bb-elementary",
|
|
1306
|
+
"iceoryx2-bb-elementary-traits",
|
|
1307
|
+
"iceoryx2-bb-testing",
|
|
1308
|
+
"iceoryx2-pal-testing",
|
|
1309
|
+
"proc-macro2",
|
|
1310
|
+
"quote",
|
|
1311
|
+
"syn 2.0.87",
|
|
1312
|
+
]
|
|
1313
|
+
|
|
1314
|
+
[[package]]
|
|
1315
|
+
name = "iceoryx2-bb-elementary"
|
|
1316
|
+
version = "0.7.0"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"generic-tests",
|
|
1319
|
+
"iceoryx2-bb-elementary-traits",
|
|
1320
|
+
"iceoryx2-bb-testing",
|
|
1321
|
+
"iceoryx2-pal-concurrency-sync",
|
|
1322
|
+
"iceoryx2-pal-testing",
|
|
1323
|
+
]
|
|
1324
|
+
|
|
1325
|
+
[[package]]
|
|
1326
|
+
name = "iceoryx2-bb-elementary-traits"
|
|
1327
|
+
version = "0.7.0"
|
|
1328
|
+
dependencies = [
|
|
1329
|
+
"iceoryx2-pal-concurrency-sync",
|
|
1330
|
+
]
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "iceoryx2-bb-lock-free"
|
|
1334
|
+
version = "0.7.0"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"generic-tests",
|
|
1337
|
+
"iceoryx2-bb-elementary",
|
|
1338
|
+
"iceoryx2-bb-elementary-traits",
|
|
1339
|
+
"iceoryx2-bb-log",
|
|
1340
|
+
"iceoryx2-bb-posix",
|
|
1341
|
+
"iceoryx2-bb-testing",
|
|
1342
|
+
"iceoryx2-pal-concurrency-sync",
|
|
1343
|
+
"iceoryx2-pal-testing",
|
|
1344
|
+
]
|
|
1345
|
+
|
|
1346
|
+
[[package]]
|
|
1347
|
+
name = "iceoryx2-bb-log"
|
|
1348
|
+
version = "0.7.0"
|
|
1349
|
+
dependencies = [
|
|
1350
|
+
"iceoryx2-pal-concurrency-sync",
|
|
1351
|
+
"log",
|
|
1352
|
+
"tracing",
|
|
1353
|
+
]
|
|
1354
|
+
|
|
1355
|
+
[[package]]
|
|
1356
|
+
name = "iceoryx2-bb-memory"
|
|
1357
|
+
version = "0.7.0"
|
|
1358
|
+
dependencies = [
|
|
1359
|
+
"iceoryx2-bb-elementary",
|
|
1360
|
+
"iceoryx2-bb-elementary-traits",
|
|
1361
|
+
"iceoryx2-bb-lock-free",
|
|
1362
|
+
"iceoryx2-bb-log",
|
|
1363
|
+
"iceoryx2-bb-posix",
|
|
1364
|
+
"iceoryx2-bb-testing",
|
|
1365
|
+
"iceoryx2-pal-concurrency-sync",
|
|
1366
|
+
"iceoryx2-pal-testing",
|
|
1367
|
+
]
|
|
1368
|
+
|
|
1369
|
+
[[package]]
|
|
1370
|
+
name = "iceoryx2-bb-posix"
|
|
1371
|
+
version = "0.7.0"
|
|
1372
|
+
dependencies = [
|
|
1373
|
+
"enum-iterator",
|
|
1374
|
+
"generic-tests",
|
|
1375
|
+
"iceoryx2-bb-container",
|
|
1376
|
+
"iceoryx2-bb-derive-macros",
|
|
1377
|
+
"iceoryx2-bb-elementary",
|
|
1378
|
+
"iceoryx2-bb-elementary-traits",
|
|
1379
|
+
"iceoryx2-bb-log",
|
|
1380
|
+
"iceoryx2-bb-system-types",
|
|
1381
|
+
"iceoryx2-bb-testing",
|
|
1382
|
+
"iceoryx2-pal-concurrency-sync",
|
|
1383
|
+
"iceoryx2-pal-configuration",
|
|
1384
|
+
"iceoryx2-pal-posix",
|
|
1385
|
+
"iceoryx2-pal-testing",
|
|
1386
|
+
"lazy_static",
|
|
1387
|
+
"serde",
|
|
1388
|
+
"tiny-fn",
|
|
1389
|
+
]
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "iceoryx2-bb-system-types"
|
|
1393
|
+
version = "0.7.0"
|
|
1394
|
+
dependencies = [
|
|
1395
|
+
"iceoryx2-bb-container",
|
|
1396
|
+
"iceoryx2-bb-derive-macros",
|
|
1397
|
+
"iceoryx2-bb-elementary",
|
|
1398
|
+
"iceoryx2-bb-elementary-traits",
|
|
1399
|
+
"iceoryx2-bb-log",
|
|
1400
|
+
"iceoryx2-bb-testing",
|
|
1401
|
+
"iceoryx2-pal-configuration",
|
|
1402
|
+
"iceoryx2-pal-posix",
|
|
1403
|
+
"iceoryx2-pal-testing",
|
|
1404
|
+
"serde",
|
|
1405
|
+
]
|
|
1406
|
+
|
|
1407
|
+
[[package]]
|
|
1408
|
+
name = "iceoryx2-bb-testing"
|
|
1409
|
+
version = "0.7.0"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"iceoryx2-bb-elementary-traits",
|
|
1412
|
+
"iceoryx2-pal-configuration",
|
|
1413
|
+
"iceoryx2-pal-testing",
|
|
1414
|
+
]
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "iceoryx2-bb-threadsafe"
|
|
1418
|
+
version = "0.7.0"
|
|
1419
|
+
dependencies = [
|
|
1420
|
+
"iceoryx2-bb-container",
|
|
1421
|
+
"iceoryx2-bb-elementary",
|
|
1422
|
+
"iceoryx2-bb-elementary-traits",
|
|
1423
|
+
"iceoryx2-bb-log",
|
|
1424
|
+
"iceoryx2-bb-posix",
|
|
1425
|
+
"iceoryx2-bb-testing",
|
|
1426
|
+
"iceoryx2-pal-posix",
|
|
1427
|
+
"iceoryx2-pal-testing",
|
|
1428
|
+
]
|
|
1429
|
+
|
|
1430
|
+
[[package]]
|
|
1431
|
+
name = "iceoryx2-bb-trait-tests"
|
|
1432
|
+
version = "0.7.0"
|
|
1433
|
+
dependencies = [
|
|
1434
|
+
"generic-tests",
|
|
1435
|
+
"iceoryx2-bb-container",
|
|
1436
|
+
"iceoryx2-bb-elementary",
|
|
1437
|
+
"iceoryx2-bb-elementary-traits",
|
|
1438
|
+
"iceoryx2-bb-lock-free",
|
|
1439
|
+
"iceoryx2-bb-memory",
|
|
1440
|
+
"iceoryx2-bb-system-types",
|
|
1441
|
+
"iceoryx2-bb-testing",
|
|
1442
|
+
"iceoryx2-cal",
|
|
1443
|
+
"iceoryx2-pal-testing",
|
|
1444
|
+
]
|
|
1445
|
+
|
|
1446
|
+
[[package]]
|
|
1447
|
+
name = "iceoryx2-cal"
|
|
1448
|
+
version = "0.7.0"
|
|
1449
|
+
dependencies = [
|
|
1450
|
+
"cdr",
|
|
1451
|
+
"generic-tests",
|
|
1452
|
+
"iceoryx2-bb-container",
|
|
1453
|
+
"iceoryx2-bb-derive-macros",
|
|
1454
|
+
"iceoryx2-bb-elementary",
|
|
1455
|
+
"iceoryx2-bb-elementary-traits",
|
|
1456
|
+
"iceoryx2-bb-lock-free",
|
|
1457
|
+
"iceoryx2-bb-log",
|
|
1458
|
+
"iceoryx2-bb-memory",
|
|
1459
|
+
"iceoryx2-bb-posix",
|
|
1460
|
+
"iceoryx2-bb-system-types",
|
|
1461
|
+
"iceoryx2-bb-testing",
|
|
1462
|
+
"iceoryx2-pal-concurrency-sync",
|
|
1463
|
+
"iceoryx2-pal-posix",
|
|
1464
|
+
"iceoryx2-pal-testing",
|
|
1465
|
+
"lazy_static",
|
|
1466
|
+
"once_cell",
|
|
1467
|
+
"postcard",
|
|
1468
|
+
"serde",
|
|
1469
|
+
"sha1_smol",
|
|
1470
|
+
"tiny-fn",
|
|
1471
|
+
"toml",
|
|
1472
|
+
]
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "iceoryx2-cli"
|
|
1476
|
+
version = "0.7.0"
|
|
1477
|
+
dependencies = [
|
|
1478
|
+
"anyhow",
|
|
1479
|
+
"better-panic",
|
|
1480
|
+
"cargo_metadata",
|
|
1481
|
+
"clap",
|
|
1482
|
+
"colored",
|
|
1483
|
+
"dialoguer",
|
|
1484
|
+
"dirs",
|
|
1485
|
+
"enum-iterator",
|
|
1486
|
+
"human-panic",
|
|
1487
|
+
"iceoryx2",
|
|
1488
|
+
"iceoryx2-bb-container",
|
|
1489
|
+
"iceoryx2-bb-elementary",
|
|
1490
|
+
"iceoryx2-bb-log",
|
|
1491
|
+
"iceoryx2-bb-posix",
|
|
1492
|
+
"iceoryx2-bb-system-types",
|
|
1493
|
+
"iceoryx2-bb-testing",
|
|
1494
|
+
"iceoryx2-cal",
|
|
1495
|
+
"iceoryx2-pal-posix",
|
|
1496
|
+
"iceoryx2-pal-testing",
|
|
1497
|
+
"iceoryx2-services-discovery",
|
|
1498
|
+
"iceoryx2-tunnels-zenoh",
|
|
1499
|
+
"iceoryx2-userland-record-and-replay",
|
|
1500
|
+
"ron",
|
|
1501
|
+
"serde",
|
|
1502
|
+
"serde_json",
|
|
1503
|
+
"serde_yaml",
|
|
1504
|
+
"tempfile",
|
|
1505
|
+
"toml",
|
|
1506
|
+
"zenoh",
|
|
1507
|
+
]
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "iceoryx2-ffi-c"
|
|
1511
|
+
version = "0.7.0"
|
|
1512
|
+
dependencies = [
|
|
1513
|
+
"cbindgen",
|
|
1514
|
+
"generic-tests",
|
|
1515
|
+
"iceoryx2",
|
|
1516
|
+
"iceoryx2-bb-container",
|
|
1517
|
+
"iceoryx2-bb-derive-macros",
|
|
1518
|
+
"iceoryx2-bb-elementary",
|
|
1519
|
+
"iceoryx2-bb-elementary-traits",
|
|
1520
|
+
"iceoryx2-bb-lock-free",
|
|
1521
|
+
"iceoryx2-bb-log",
|
|
1522
|
+
"iceoryx2-bb-posix",
|
|
1523
|
+
"iceoryx2-bb-system-types",
|
|
1524
|
+
"iceoryx2-bb-testing",
|
|
1525
|
+
"iceoryx2-cal",
|
|
1526
|
+
"iceoryx2-ffi-macros",
|
|
1527
|
+
"iceoryx2-pal-concurrency-sync",
|
|
1528
|
+
"iceoryx2-pal-testing",
|
|
1529
|
+
]
|
|
1530
|
+
|
|
1531
|
+
[[package]]
|
|
1532
|
+
name = "iceoryx2-ffi-macros"
|
|
1533
|
+
version = "0.7.0"
|
|
1534
|
+
dependencies = [
|
|
1535
|
+
"iceoryx2-bb-elementary",
|
|
1536
|
+
"iceoryx2-bb-elementary-traits",
|
|
1537
|
+
"proc-macro2",
|
|
1538
|
+
"quote",
|
|
1539
|
+
"syn 2.0.87",
|
|
1540
|
+
]
|
|
1541
|
+
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "iceoryx2-ffi-python"
|
|
1544
|
+
version = "0.7.0"
|
|
1545
|
+
dependencies = [
|
|
1546
|
+
"iceoryx2",
|
|
1547
|
+
"iceoryx2-bb-log",
|
|
1548
|
+
"pyo3",
|
|
1549
|
+
]
|
|
1550
|
+
|
|
1551
|
+
[[package]]
|
|
1552
|
+
name = "iceoryx2-pal-concurrency-sync"
|
|
1553
|
+
version = "0.7.0"
|
|
1554
|
+
dependencies = [
|
|
1555
|
+
"generic-tests",
|
|
1556
|
+
"iceoryx2-pal-testing",
|
|
1557
|
+
]
|
|
1558
|
+
|
|
1559
|
+
[[package]]
|
|
1560
|
+
name = "iceoryx2-pal-configuration"
|
|
1561
|
+
version = "0.7.0"
|
|
1562
|
+
|
|
1563
|
+
[[package]]
|
|
1564
|
+
name = "iceoryx2-pal-posix"
|
|
1565
|
+
version = "0.7.0"
|
|
1566
|
+
dependencies = [
|
|
1567
|
+
"bindgen",
|
|
1568
|
+
"cc",
|
|
1569
|
+
"iceoryx2-pal-concurrency-sync",
|
|
1570
|
+
"iceoryx2-pal-configuration",
|
|
1571
|
+
"iceoryx2-pal-testing",
|
|
1572
|
+
"lazy_static",
|
|
1573
|
+
"libc",
|
|
1574
|
+
"windows-sys 0.48.0",
|
|
1575
|
+
]
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "iceoryx2-pal-testing"
|
|
1579
|
+
version = "0.7.0"
|
|
1580
|
+
dependencies = [
|
|
1581
|
+
"iceoryx2-pal-configuration",
|
|
1582
|
+
]
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "iceoryx2-services-discovery"
|
|
1586
|
+
version = "0.7.0"
|
|
1587
|
+
dependencies = [
|
|
1588
|
+
"generic-tests",
|
|
1589
|
+
"iceoryx2",
|
|
1590
|
+
"iceoryx2-bb-elementary",
|
|
1591
|
+
"iceoryx2-bb-elementary-traits",
|
|
1592
|
+
"iceoryx2-bb-posix",
|
|
1593
|
+
"iceoryx2-bb-testing",
|
|
1594
|
+
"iceoryx2-pal-testing",
|
|
1595
|
+
"once_cell",
|
|
1596
|
+
"serde",
|
|
1597
|
+
]
|
|
1598
|
+
|
|
1599
|
+
[[package]]
|
|
1600
|
+
name = "iceoryx2-tunnels-end-to-end-testing"
|
|
1601
|
+
version = "0.7.0"
|
|
1602
|
+
dependencies = [
|
|
1603
|
+
"iceoryx2",
|
|
1604
|
+
"iceoryx2-bb-log",
|
|
1605
|
+
]
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "iceoryx2-tunnels-zenoh"
|
|
1609
|
+
version = "0.7.0"
|
|
1610
|
+
dependencies = [
|
|
1611
|
+
"generic-tests",
|
|
1612
|
+
"iceoryx2",
|
|
1613
|
+
"iceoryx2-bb-log",
|
|
1614
|
+
"iceoryx2-bb-posix",
|
|
1615
|
+
"iceoryx2-bb-testing",
|
|
1616
|
+
"iceoryx2-services-discovery",
|
|
1617
|
+
"serde_json",
|
|
1618
|
+
"zenoh",
|
|
1619
|
+
]
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "iceoryx2-userland-record-and-replay"
|
|
1623
|
+
version = "0.7.0"
|
|
1624
|
+
dependencies = [
|
|
1625
|
+
"anyhow",
|
|
1626
|
+
"iceoryx2",
|
|
1627
|
+
"iceoryx2-bb-container",
|
|
1628
|
+
"iceoryx2-bb-elementary",
|
|
1629
|
+
"iceoryx2-bb-log",
|
|
1630
|
+
"iceoryx2-bb-posix",
|
|
1631
|
+
"iceoryx2-bb-system-types",
|
|
1632
|
+
"iceoryx2-cal",
|
|
1633
|
+
"iceoryx2-pal-concurrency-sync",
|
|
1634
|
+
"iceoryx2-pal-testing",
|
|
1635
|
+
"serde",
|
|
1636
|
+
]
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "icu_collections"
|
|
1640
|
+
version = "1.5.0"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
|
1643
|
+
dependencies = [
|
|
1644
|
+
"displaydoc",
|
|
1645
|
+
"yoke",
|
|
1646
|
+
"zerofrom",
|
|
1647
|
+
"zerovec",
|
|
1648
|
+
]
|
|
1649
|
+
|
|
1650
|
+
[[package]]
|
|
1651
|
+
name = "icu_locid"
|
|
1652
|
+
version = "1.5.0"
|
|
1653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
1655
|
+
dependencies = [
|
|
1656
|
+
"displaydoc",
|
|
1657
|
+
"litemap",
|
|
1658
|
+
"tinystr",
|
|
1659
|
+
"writeable",
|
|
1660
|
+
"zerovec",
|
|
1661
|
+
]
|
|
1662
|
+
|
|
1663
|
+
[[package]]
|
|
1664
|
+
name = "icu_locid_transform"
|
|
1665
|
+
version = "1.5.0"
|
|
1666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1667
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
1668
|
+
dependencies = [
|
|
1669
|
+
"displaydoc",
|
|
1670
|
+
"icu_locid",
|
|
1671
|
+
"icu_locid_transform_data",
|
|
1672
|
+
"icu_provider",
|
|
1673
|
+
"tinystr",
|
|
1674
|
+
"zerovec",
|
|
1675
|
+
]
|
|
1676
|
+
|
|
1677
|
+
[[package]]
|
|
1678
|
+
name = "icu_locid_transform_data"
|
|
1679
|
+
version = "1.5.1"
|
|
1680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1681
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
1682
|
+
|
|
1683
|
+
[[package]]
|
|
1684
|
+
name = "icu_normalizer"
|
|
1685
|
+
version = "1.5.0"
|
|
1686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
|
1688
|
+
dependencies = [
|
|
1689
|
+
"displaydoc",
|
|
1690
|
+
"icu_collections",
|
|
1691
|
+
"icu_normalizer_data",
|
|
1692
|
+
"icu_properties",
|
|
1693
|
+
"icu_provider",
|
|
1694
|
+
"smallvec",
|
|
1695
|
+
"utf16_iter",
|
|
1696
|
+
"utf8_iter",
|
|
1697
|
+
"write16",
|
|
1698
|
+
"zerovec",
|
|
1699
|
+
]
|
|
1700
|
+
|
|
1701
|
+
[[package]]
|
|
1702
|
+
name = "icu_normalizer_data"
|
|
1703
|
+
version = "1.5.1"
|
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
|
1706
|
+
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "icu_properties"
|
|
1709
|
+
version = "1.5.1"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
1712
|
+
dependencies = [
|
|
1713
|
+
"displaydoc",
|
|
1714
|
+
"icu_collections",
|
|
1715
|
+
"icu_locid_transform",
|
|
1716
|
+
"icu_properties_data",
|
|
1717
|
+
"icu_provider",
|
|
1718
|
+
"tinystr",
|
|
1719
|
+
"zerovec",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "icu_properties_data"
|
|
1724
|
+
version = "1.5.1"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
|
1727
|
+
|
|
1728
|
+
[[package]]
|
|
1729
|
+
name = "icu_provider"
|
|
1730
|
+
version = "1.5.0"
|
|
1731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
1733
|
+
dependencies = [
|
|
1734
|
+
"displaydoc",
|
|
1735
|
+
"icu_locid",
|
|
1736
|
+
"icu_provider_macros",
|
|
1737
|
+
"stable_deref_trait",
|
|
1738
|
+
"tinystr",
|
|
1739
|
+
"writeable",
|
|
1740
|
+
"yoke",
|
|
1741
|
+
"zerofrom",
|
|
1742
|
+
"zerovec",
|
|
1743
|
+
]
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "icu_provider_macros"
|
|
1747
|
+
version = "1.5.0"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1750
|
+
dependencies = [
|
|
1751
|
+
"proc-macro2",
|
|
1752
|
+
"quote",
|
|
1753
|
+
"syn 2.0.87",
|
|
1754
|
+
]
|
|
1755
|
+
|
|
1756
|
+
[[package]]
|
|
1757
|
+
name = "ident_case"
|
|
1758
|
+
version = "1.0.1"
|
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1761
|
+
|
|
1762
|
+
[[package]]
|
|
1763
|
+
name = "idna"
|
|
1764
|
+
version = "1.0.3"
|
|
1765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1766
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
1767
|
+
dependencies = [
|
|
1768
|
+
"idna_adapter",
|
|
1769
|
+
"smallvec",
|
|
1770
|
+
"utf8_iter",
|
|
1771
|
+
]
|
|
1772
|
+
|
|
1773
|
+
[[package]]
|
|
1774
|
+
name = "idna_adapter"
|
|
1775
|
+
version = "1.2.0"
|
|
1776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
|
1778
|
+
dependencies = [
|
|
1779
|
+
"icu_normalizer",
|
|
1780
|
+
"icu_properties",
|
|
1781
|
+
]
|
|
1782
|
+
|
|
1783
|
+
[[package]]
|
|
1784
|
+
name = "indexmap"
|
|
1785
|
+
version = "1.9.3"
|
|
1786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1787
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1788
|
+
dependencies = [
|
|
1789
|
+
"autocfg",
|
|
1790
|
+
"hashbrown 0.12.3",
|
|
1791
|
+
"serde",
|
|
1792
|
+
]
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "indexmap"
|
|
1796
|
+
version = "2.6.0"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
|
|
1799
|
+
dependencies = [
|
|
1800
|
+
"equivalent",
|
|
1801
|
+
"hashbrown 0.15.2",
|
|
1802
|
+
"serde",
|
|
1803
|
+
]
|
|
1804
|
+
|
|
1805
|
+
[[package]]
|
|
1806
|
+
name = "indoc"
|
|
1807
|
+
version = "2.0.6"
|
|
1808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1809
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
1810
|
+
|
|
1811
|
+
[[package]]
|
|
1812
|
+
name = "inout"
|
|
1813
|
+
version = "0.1.4"
|
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1816
|
+
dependencies = [
|
|
1817
|
+
"generic-array",
|
|
1818
|
+
]
|
|
1819
|
+
|
|
1820
|
+
[[package]]
|
|
1821
|
+
name = "ipnetwork"
|
|
1822
|
+
version = "0.20.0"
|
|
1823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
+
checksum = "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e"
|
|
1825
|
+
dependencies = [
|
|
1826
|
+
"serde",
|
|
1827
|
+
]
|
|
1828
|
+
|
|
1829
|
+
[[package]]
|
|
1830
|
+
name = "is_terminal_polyfill"
|
|
1831
|
+
version = "1.70.1"
|
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
1834
|
+
|
|
1835
|
+
[[package]]
|
|
1836
|
+
name = "itertools"
|
|
1837
|
+
version = "0.13.0"
|
|
1838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1839
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1840
|
+
dependencies = [
|
|
1841
|
+
"either",
|
|
1842
|
+
]
|
|
1843
|
+
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "itoa"
|
|
1846
|
+
version = "1.0.11"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
1849
|
+
|
|
1850
|
+
[[package]]
|
|
1851
|
+
name = "jni"
|
|
1852
|
+
version = "0.21.1"
|
|
1853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
|
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
1855
|
+
dependencies = [
|
|
1856
|
+
"cesu8",
|
|
1857
|
+
"cfg-if",
|
|
1858
|
+
"combine",
|
|
1859
|
+
"jni-sys",
|
|
1860
|
+
"log",
|
|
1861
|
+
"thiserror 1.0.64",
|
|
1862
|
+
"walkdir",
|
|
1863
|
+
"windows-sys 0.45.0",
|
|
1864
|
+
]
|
|
1865
|
+
|
|
1866
|
+
[[package]]
|
|
1867
|
+
name = "jni-sys"
|
|
1868
|
+
version = "0.3.0"
|
|
1869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1870
|
+
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
1871
|
+
|
|
1872
|
+
[[package]]
|
|
1873
|
+
name = "js-sys"
|
|
1874
|
+
version = "0.3.77"
|
|
1875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
1877
|
+
dependencies = [
|
|
1878
|
+
"once_cell",
|
|
1879
|
+
"wasm-bindgen",
|
|
1880
|
+
]
|
|
1881
|
+
|
|
1882
|
+
[[package]]
|
|
1883
|
+
name = "json5"
|
|
1884
|
+
version = "0.4.1"
|
|
1885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
+
checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
|
|
1887
|
+
dependencies = [
|
|
1888
|
+
"pest",
|
|
1889
|
+
"pest_derive",
|
|
1890
|
+
"serde",
|
|
1891
|
+
]
|
|
1892
|
+
|
|
1893
|
+
[[package]]
|
|
1894
|
+
name = "keccak"
|
|
1895
|
+
version = "0.1.5"
|
|
1896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1897
|
+
checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
|
|
1898
|
+
dependencies = [
|
|
1899
|
+
"cpufeatures",
|
|
1900
|
+
]
|
|
1901
|
+
|
|
1902
|
+
[[package]]
|
|
1903
|
+
name = "keyed-set"
|
|
1904
|
+
version = "1.0.0"
|
|
1905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1906
|
+
checksum = "0a3ec39d2dc17953a1540d63906a112088f79b2e46833b4ed65bc9de3904ae34"
|
|
1907
|
+
dependencies = [
|
|
1908
|
+
"hashbrown 0.14.5",
|
|
1909
|
+
]
|
|
1910
|
+
|
|
1911
|
+
[[package]]
|
|
1912
|
+
name = "lazy_static"
|
|
1913
|
+
version = "1.5.0"
|
|
1914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1916
|
+
dependencies = [
|
|
1917
|
+
"spin",
|
|
1918
|
+
]
|
|
1919
|
+
|
|
1920
|
+
[[package]]
|
|
1921
|
+
name = "libc"
|
|
1922
|
+
version = "0.2.172"
|
|
1923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1924
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
1925
|
+
|
|
1926
|
+
[[package]]
|
|
1927
|
+
name = "libloading"
|
|
1928
|
+
version = "0.8.5"
|
|
1929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1930
|
+
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
|
|
1931
|
+
dependencies = [
|
|
1932
|
+
"cfg-if",
|
|
1933
|
+
"windows-targets 0.52.6",
|
|
1934
|
+
]
|
|
1935
|
+
|
|
1936
|
+
[[package]]
|
|
1937
|
+
name = "libm"
|
|
1938
|
+
version = "0.2.15"
|
|
1939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
1941
|
+
|
|
1942
|
+
[[package]]
|
|
1943
|
+
name = "libredox"
|
|
1944
|
+
version = "0.1.3"
|
|
1945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1946
|
+
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1947
|
+
dependencies = [
|
|
1948
|
+
"bitflags",
|
|
1949
|
+
"libc",
|
|
1950
|
+
]
|
|
1951
|
+
|
|
1952
|
+
[[package]]
|
|
1953
|
+
name = "linux-raw-sys"
|
|
1954
|
+
version = "0.4.14"
|
|
1955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1956
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
1957
|
+
|
|
1958
|
+
[[package]]
|
|
1959
|
+
name = "litemap"
|
|
1960
|
+
version = "0.7.5"
|
|
1961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1962
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
1963
|
+
|
|
1964
|
+
[[package]]
|
|
1965
|
+
name = "lock_api"
|
|
1966
|
+
version = "0.4.12"
|
|
1967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1968
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
1969
|
+
dependencies = [
|
|
1970
|
+
"autocfg",
|
|
1971
|
+
"scopeguard",
|
|
1972
|
+
]
|
|
1973
|
+
|
|
1974
|
+
[[package]]
|
|
1975
|
+
name = "log"
|
|
1976
|
+
version = "0.4.22"
|
|
1977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1978
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
1979
|
+
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "lz4_flex"
|
|
1982
|
+
version = "0.11.3"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
|
|
1985
|
+
dependencies = [
|
|
1986
|
+
"twox-hash",
|
|
1987
|
+
]
|
|
1988
|
+
|
|
1989
|
+
[[package]]
|
|
1990
|
+
name = "matchers"
|
|
1991
|
+
version = "0.1.0"
|
|
1992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1993
|
+
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
|
1994
|
+
dependencies = [
|
|
1995
|
+
"regex-automata 0.1.10",
|
|
1996
|
+
]
|
|
1997
|
+
|
|
1998
|
+
[[package]]
|
|
1999
|
+
name = "memchr"
|
|
2000
|
+
version = "2.7.4"
|
|
2001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
2003
|
+
|
|
2004
|
+
[[package]]
|
|
2005
|
+
name = "memoffset"
|
|
2006
|
+
version = "0.9.1"
|
|
2007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2008
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
2009
|
+
dependencies = [
|
|
2010
|
+
"autocfg",
|
|
2011
|
+
]
|
|
2012
|
+
|
|
2013
|
+
[[package]]
|
|
2014
|
+
name = "minimal-lexical"
|
|
2015
|
+
version = "0.2.1"
|
|
2016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2017
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
2018
|
+
|
|
2019
|
+
[[package]]
|
|
2020
|
+
name = "miniz_oxide"
|
|
2021
|
+
version = "0.8.0"
|
|
2022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2023
|
+
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
|
|
2024
|
+
dependencies = [
|
|
2025
|
+
"adler2",
|
|
2026
|
+
]
|
|
2027
|
+
|
|
2028
|
+
[[package]]
|
|
2029
|
+
name = "mio"
|
|
2030
|
+
version = "1.0.3"
|
|
2031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2032
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
2033
|
+
dependencies = [
|
|
2034
|
+
"libc",
|
|
2035
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2036
|
+
"windows-sys 0.52.0",
|
|
2037
|
+
]
|
|
2038
|
+
|
|
2039
|
+
[[package]]
|
|
2040
|
+
name = "nanorand"
|
|
2041
|
+
version = "0.7.0"
|
|
2042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2043
|
+
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
|
|
2044
|
+
dependencies = [
|
|
2045
|
+
"getrandom 0.2.15",
|
|
2046
|
+
]
|
|
2047
|
+
|
|
2048
|
+
[[package]]
|
|
2049
|
+
name = "nix"
|
|
2050
|
+
version = "0.29.0"
|
|
2051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
+
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
|
|
2053
|
+
dependencies = [
|
|
2054
|
+
"bitflags",
|
|
2055
|
+
"cfg-if",
|
|
2056
|
+
"cfg_aliases",
|
|
2057
|
+
"libc",
|
|
2058
|
+
]
|
|
2059
|
+
|
|
2060
|
+
[[package]]
|
|
2061
|
+
name = "no-std-net"
|
|
2062
|
+
version = "0.6.0"
|
|
2063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2064
|
+
checksum = "43794a0ace135be66a25d3ae77d41b91615fb68ae937f904090203e81f755b65"
|
|
2065
|
+
|
|
2066
|
+
[[package]]
|
|
2067
|
+
name = "nom"
|
|
2068
|
+
version = "7.1.3"
|
|
2069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2070
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
2071
|
+
dependencies = [
|
|
2072
|
+
"memchr",
|
|
2073
|
+
"minimal-lexical",
|
|
2074
|
+
]
|
|
2075
|
+
|
|
2076
|
+
[[package]]
|
|
2077
|
+
name = "nonempty-collections"
|
|
2078
|
+
version = "0.3.0"
|
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
+
checksum = "b7f301452dbaf00f14ca0c8204e46cf0c9a96f53543ac72cefa9b4d91c19e0ac"
|
|
2081
|
+
dependencies = [
|
|
2082
|
+
"serde",
|
|
2083
|
+
]
|
|
2084
|
+
|
|
2085
|
+
[[package]]
|
|
2086
|
+
name = "nu-ansi-term"
|
|
2087
|
+
version = "0.46.0"
|
|
2088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2089
|
+
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
|
2090
|
+
dependencies = [
|
|
2091
|
+
"overload",
|
|
2092
|
+
"winapi",
|
|
2093
|
+
]
|
|
2094
|
+
|
|
2095
|
+
[[package]]
|
|
2096
|
+
name = "num-bigint"
|
|
2097
|
+
version = "0.4.6"
|
|
2098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2099
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
2100
|
+
dependencies = [
|
|
2101
|
+
"num-integer",
|
|
2102
|
+
"num-traits",
|
|
2103
|
+
]
|
|
2104
|
+
|
|
2105
|
+
[[package]]
|
|
2106
|
+
name = "num-bigint-dig"
|
|
2107
|
+
version = "0.8.4"
|
|
2108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2109
|
+
checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
|
|
2110
|
+
dependencies = [
|
|
2111
|
+
"byteorder",
|
|
2112
|
+
"lazy_static",
|
|
2113
|
+
"libm",
|
|
2114
|
+
"num-integer",
|
|
2115
|
+
"num-iter",
|
|
2116
|
+
"num-traits",
|
|
2117
|
+
"rand 0.8.5",
|
|
2118
|
+
"smallvec",
|
|
2119
|
+
"zeroize",
|
|
2120
|
+
]
|
|
2121
|
+
|
|
2122
|
+
[[package]]
|
|
2123
|
+
name = "num-conv"
|
|
2124
|
+
version = "0.1.0"
|
|
2125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
2127
|
+
|
|
2128
|
+
[[package]]
|
|
2129
|
+
name = "num-integer"
|
|
2130
|
+
version = "0.1.46"
|
|
2131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2132
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
2133
|
+
dependencies = [
|
|
2134
|
+
"num-traits",
|
|
2135
|
+
]
|
|
2136
|
+
|
|
2137
|
+
[[package]]
|
|
2138
|
+
name = "num-iter"
|
|
2139
|
+
version = "0.1.45"
|
|
2140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
2142
|
+
dependencies = [
|
|
2143
|
+
"autocfg",
|
|
2144
|
+
"num-integer",
|
|
2145
|
+
"num-traits",
|
|
2146
|
+
]
|
|
2147
|
+
|
|
2148
|
+
[[package]]
|
|
2149
|
+
name = "num-traits"
|
|
2150
|
+
version = "0.2.19"
|
|
2151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2152
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2153
|
+
dependencies = [
|
|
2154
|
+
"autocfg",
|
|
2155
|
+
"libm",
|
|
2156
|
+
]
|
|
2157
|
+
|
|
2158
|
+
[[package]]
|
|
2159
|
+
name = "num_cpus"
|
|
2160
|
+
version = "1.16.0"
|
|
2161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2162
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
2163
|
+
dependencies = [
|
|
2164
|
+
"hermit-abi",
|
|
2165
|
+
"libc",
|
|
2166
|
+
]
|
|
2167
|
+
|
|
2168
|
+
[[package]]
|
|
2169
|
+
name = "object"
|
|
2170
|
+
version = "0.36.5"
|
|
2171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2172
|
+
checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
|
|
2173
|
+
dependencies = [
|
|
2174
|
+
"memchr",
|
|
2175
|
+
]
|
|
2176
|
+
|
|
2177
|
+
[[package]]
|
|
2178
|
+
name = "oid-registry"
|
|
2179
|
+
version = "0.7.1"
|
|
2180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2181
|
+
checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9"
|
|
2182
|
+
dependencies = [
|
|
2183
|
+
"asn1-rs",
|
|
2184
|
+
]
|
|
2185
|
+
|
|
2186
|
+
[[package]]
|
|
2187
|
+
name = "once_cell"
|
|
2188
|
+
version = "1.20.2"
|
|
2189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2190
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
|
2191
|
+
|
|
2192
|
+
[[package]]
|
|
2193
|
+
name = "openssl-probe"
|
|
2194
|
+
version = "0.1.6"
|
|
2195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2196
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
2197
|
+
|
|
2198
|
+
[[package]]
|
|
2199
|
+
name = "option-ext"
|
|
2200
|
+
version = "0.2.0"
|
|
2201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2202
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
2203
|
+
|
|
2204
|
+
[[package]]
|
|
2205
|
+
name = "os_info"
|
|
2206
|
+
version = "3.8.2"
|
|
2207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2208
|
+
checksum = "ae99c7fa6dd38c7cafe1ec085e804f8f555a2f8659b0dbe03f1f9963a9b51092"
|
|
2209
|
+
dependencies = [
|
|
2210
|
+
"log",
|
|
2211
|
+
"serde",
|
|
2212
|
+
"windows-sys 0.52.0",
|
|
2213
|
+
]
|
|
2214
|
+
|
|
2215
|
+
[[package]]
|
|
2216
|
+
name = "overload"
|
|
2217
|
+
version = "0.1.1"
|
|
2218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2219
|
+
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
2220
|
+
|
|
2221
|
+
[[package]]
|
|
2222
|
+
name = "parking"
|
|
2223
|
+
version = "2.2.1"
|
|
2224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2225
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
2226
|
+
|
|
2227
|
+
[[package]]
|
|
2228
|
+
name = "paste"
|
|
2229
|
+
version = "1.0.15"
|
|
2230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2231
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2232
|
+
|
|
2233
|
+
[[package]]
|
|
2234
|
+
name = "pem-rfc7468"
|
|
2235
|
+
version = "0.7.0"
|
|
2236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2237
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
2238
|
+
dependencies = [
|
|
2239
|
+
"base64ct",
|
|
2240
|
+
]
|
|
2241
|
+
|
|
2242
|
+
[[package]]
|
|
2243
|
+
name = "percent-encoding"
|
|
2244
|
+
version = "2.3.1"
|
|
2245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
2247
|
+
|
|
2248
|
+
[[package]]
|
|
2249
|
+
name = "pest"
|
|
2250
|
+
version = "2.8.0"
|
|
2251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2252
|
+
checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6"
|
|
2253
|
+
dependencies = [
|
|
2254
|
+
"memchr",
|
|
2255
|
+
"thiserror 2.0.12",
|
|
2256
|
+
"ucd-trie",
|
|
2257
|
+
]
|
|
2258
|
+
|
|
2259
|
+
[[package]]
|
|
2260
|
+
name = "pest_derive"
|
|
2261
|
+
version = "2.8.0"
|
|
2262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2263
|
+
checksum = "d725d9cfd79e87dccc9341a2ef39d1b6f6353d68c4b33c177febbe1a402c97c5"
|
|
2264
|
+
dependencies = [
|
|
2265
|
+
"pest",
|
|
2266
|
+
"pest_generator",
|
|
2267
|
+
]
|
|
2268
|
+
|
|
2269
|
+
[[package]]
|
|
2270
|
+
name = "pest_generator"
|
|
2271
|
+
version = "2.8.0"
|
|
2272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2273
|
+
checksum = "db7d01726be8ab66ab32f9df467ae8b1148906685bbe75c82d1e65d7f5b3f841"
|
|
2274
|
+
dependencies = [
|
|
2275
|
+
"pest",
|
|
2276
|
+
"pest_meta",
|
|
2277
|
+
"proc-macro2",
|
|
2278
|
+
"quote",
|
|
2279
|
+
"syn 2.0.87",
|
|
2280
|
+
]
|
|
2281
|
+
|
|
2282
|
+
[[package]]
|
|
2283
|
+
name = "pest_meta"
|
|
2284
|
+
version = "2.8.0"
|
|
2285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2286
|
+
checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0"
|
|
2287
|
+
dependencies = [
|
|
2288
|
+
"once_cell",
|
|
2289
|
+
"pest",
|
|
2290
|
+
"sha2",
|
|
2291
|
+
]
|
|
2292
|
+
|
|
2293
|
+
[[package]]
|
|
2294
|
+
name = "petgraph"
|
|
2295
|
+
version = "0.6.5"
|
|
2296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2297
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
2298
|
+
dependencies = [
|
|
2299
|
+
"fixedbitset",
|
|
2300
|
+
"indexmap 2.6.0",
|
|
2301
|
+
]
|
|
2302
|
+
|
|
2303
|
+
[[package]]
|
|
2304
|
+
name = "phf"
|
|
2305
|
+
version = "0.11.3"
|
|
2306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2307
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
2308
|
+
dependencies = [
|
|
2309
|
+
"phf_macros",
|
|
2310
|
+
"phf_shared",
|
|
2311
|
+
]
|
|
2312
|
+
|
|
2313
|
+
[[package]]
|
|
2314
|
+
name = "phf_generator"
|
|
2315
|
+
version = "0.11.3"
|
|
2316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2317
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2318
|
+
dependencies = [
|
|
2319
|
+
"phf_shared",
|
|
2320
|
+
"rand 0.8.5",
|
|
2321
|
+
]
|
|
2322
|
+
|
|
2323
|
+
[[package]]
|
|
2324
|
+
name = "phf_macros"
|
|
2325
|
+
version = "0.11.3"
|
|
2326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
2328
|
+
dependencies = [
|
|
2329
|
+
"phf_generator",
|
|
2330
|
+
"phf_shared",
|
|
2331
|
+
"proc-macro2",
|
|
2332
|
+
"quote",
|
|
2333
|
+
"syn 2.0.87",
|
|
2334
|
+
]
|
|
2335
|
+
|
|
2336
|
+
[[package]]
|
|
2337
|
+
name = "phf_shared"
|
|
2338
|
+
version = "0.11.3"
|
|
2339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2340
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
2341
|
+
dependencies = [
|
|
2342
|
+
"siphasher",
|
|
2343
|
+
]
|
|
2344
|
+
|
|
2345
|
+
[[package]]
|
|
2346
|
+
name = "pin-project-lite"
|
|
2347
|
+
version = "0.2.14"
|
|
2348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2349
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
|
2350
|
+
|
|
2351
|
+
[[package]]
|
|
2352
|
+
name = "pin-utils"
|
|
2353
|
+
version = "0.1.0"
|
|
2354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2355
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2356
|
+
|
|
2357
|
+
[[package]]
|
|
2358
|
+
name = "pkcs1"
|
|
2359
|
+
version = "0.7.5"
|
|
2360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2361
|
+
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
|
|
2362
|
+
dependencies = [
|
|
2363
|
+
"der",
|
|
2364
|
+
"pkcs8",
|
|
2365
|
+
"spki",
|
|
2366
|
+
]
|
|
2367
|
+
|
|
2368
|
+
[[package]]
|
|
2369
|
+
name = "pkcs8"
|
|
2370
|
+
version = "0.10.2"
|
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
2373
|
+
dependencies = [
|
|
2374
|
+
"der",
|
|
2375
|
+
"spki",
|
|
2376
|
+
]
|
|
2377
|
+
|
|
2378
|
+
[[package]]
|
|
2379
|
+
name = "pnet_base"
|
|
2380
|
+
version = "0.35.0"
|
|
2381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2382
|
+
checksum = "ffc190d4067df16af3aba49b3b74c469e611cad6314676eaf1157f31aa0fb2f7"
|
|
2383
|
+
dependencies = [
|
|
2384
|
+
"no-std-net",
|
|
2385
|
+
]
|
|
2386
|
+
|
|
2387
|
+
[[package]]
|
|
2388
|
+
name = "pnet_datalink"
|
|
2389
|
+
version = "0.35.0"
|
|
2390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2391
|
+
checksum = "e79e70ec0be163102a332e1d2d5586d362ad76b01cec86f830241f2b6452a7b7"
|
|
2392
|
+
dependencies = [
|
|
2393
|
+
"ipnetwork",
|
|
2394
|
+
"libc",
|
|
2395
|
+
"pnet_base",
|
|
2396
|
+
"pnet_sys",
|
|
2397
|
+
"winapi",
|
|
2398
|
+
]
|
|
2399
|
+
|
|
2400
|
+
[[package]]
|
|
2401
|
+
name = "pnet_sys"
|
|
2402
|
+
version = "0.35.0"
|
|
2403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2404
|
+
checksum = "7d4643d3d4db6b08741050c2f3afa9a892c4244c085a72fcda93c9c2c9a00f4b"
|
|
2405
|
+
dependencies = [
|
|
2406
|
+
"libc",
|
|
2407
|
+
"winapi",
|
|
2408
|
+
]
|
|
2409
|
+
|
|
2410
|
+
[[package]]
|
|
2411
|
+
name = "portable-atomic"
|
|
2412
|
+
version = "1.11.0"
|
|
2413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2414
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
2415
|
+
|
|
2416
|
+
[[package]]
|
|
2417
|
+
name = "postcard"
|
|
2418
|
+
version = "1.1.3"
|
|
2419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
2421
|
+
dependencies = [
|
|
2422
|
+
"cobs",
|
|
2423
|
+
"embedded-io 0.4.0",
|
|
2424
|
+
"embedded-io 0.6.1",
|
|
2425
|
+
"serde",
|
|
2426
|
+
]
|
|
2427
|
+
|
|
2428
|
+
[[package]]
|
|
2429
|
+
name = "powerfmt"
|
|
2430
|
+
version = "0.2.0"
|
|
2431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
2433
|
+
|
|
2434
|
+
[[package]]
|
|
2435
|
+
name = "ppv-lite86"
|
|
2436
|
+
version = "0.2.21"
|
|
2437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2438
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2439
|
+
dependencies = [
|
|
2440
|
+
"zerocopy 0.8.25",
|
|
2441
|
+
]
|
|
2442
|
+
|
|
2443
|
+
[[package]]
|
|
2444
|
+
name = "prettyplease"
|
|
2445
|
+
version = "0.2.22"
|
|
2446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2447
|
+
checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba"
|
|
2448
|
+
dependencies = [
|
|
2449
|
+
"proc-macro2",
|
|
2450
|
+
"syn 2.0.87",
|
|
2451
|
+
]
|
|
2452
|
+
|
|
2453
|
+
[[package]]
|
|
2454
|
+
name = "proc-macro2"
|
|
2455
|
+
version = "1.0.86"
|
|
2456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2457
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
|
2458
|
+
dependencies = [
|
|
2459
|
+
"unicode-ident",
|
|
2460
|
+
]
|
|
2461
|
+
|
|
2462
|
+
[[package]]
|
|
2463
|
+
name = "pyo3"
|
|
2464
|
+
version = "0.25.0"
|
|
2465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2466
|
+
checksum = "f239d656363bcee73afef85277f1b281e8ac6212a1d42aa90e55b90ed43c47a4"
|
|
2467
|
+
dependencies = [
|
|
2468
|
+
"indoc",
|
|
2469
|
+
"libc",
|
|
2470
|
+
"memoffset",
|
|
2471
|
+
"once_cell",
|
|
2472
|
+
"portable-atomic",
|
|
2473
|
+
"pyo3-build-config",
|
|
2474
|
+
"pyo3-ffi",
|
|
2475
|
+
"pyo3-macros",
|
|
2476
|
+
"unindent",
|
|
2477
|
+
]
|
|
2478
|
+
|
|
2479
|
+
[[package]]
|
|
2480
|
+
name = "pyo3-build-config"
|
|
2481
|
+
version = "0.25.0"
|
|
2482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2483
|
+
checksum = "755ea671a1c34044fa165247aaf6f419ca39caa6003aee791a0df2713d8f1b6d"
|
|
2484
|
+
dependencies = [
|
|
2485
|
+
"once_cell",
|
|
2486
|
+
"target-lexicon",
|
|
2487
|
+
]
|
|
2488
|
+
|
|
2489
|
+
[[package]]
|
|
2490
|
+
name = "pyo3-ffi"
|
|
2491
|
+
version = "0.25.0"
|
|
2492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2493
|
+
checksum = "fc95a2e67091e44791d4ea300ff744be5293f394f1bafd9f78c080814d35956e"
|
|
2494
|
+
dependencies = [
|
|
2495
|
+
"libc",
|
|
2496
|
+
"pyo3-build-config",
|
|
2497
|
+
]
|
|
2498
|
+
|
|
2499
|
+
[[package]]
|
|
2500
|
+
name = "pyo3-macros"
|
|
2501
|
+
version = "0.25.0"
|
|
2502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2503
|
+
checksum = "a179641d1b93920829a62f15e87c0ed791b6c8db2271ba0fd7c2686090510214"
|
|
2504
|
+
dependencies = [
|
|
2505
|
+
"proc-macro2",
|
|
2506
|
+
"pyo3-macros-backend",
|
|
2507
|
+
"quote",
|
|
2508
|
+
"syn 2.0.87",
|
|
2509
|
+
]
|
|
2510
|
+
|
|
2511
|
+
[[package]]
|
|
2512
|
+
name = "pyo3-macros-backend"
|
|
2513
|
+
version = "0.25.0"
|
|
2514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2515
|
+
checksum = "9dff85ebcaab8c441b0e3f7ae40a6963ecea8a9f5e74f647e33fcf5ec9a1e89e"
|
|
2516
|
+
dependencies = [
|
|
2517
|
+
"heck 0.5.0",
|
|
2518
|
+
"proc-macro2",
|
|
2519
|
+
"pyo3-build-config",
|
|
2520
|
+
"quote",
|
|
2521
|
+
"syn 2.0.87",
|
|
2522
|
+
]
|
|
2523
|
+
|
|
2524
|
+
[[package]]
|
|
2525
|
+
name = "quinn"
|
|
2526
|
+
version = "0.11.7"
|
|
2527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2528
|
+
checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
|
|
2529
|
+
dependencies = [
|
|
2530
|
+
"bytes",
|
|
2531
|
+
"cfg_aliases",
|
|
2532
|
+
"pin-project-lite",
|
|
2533
|
+
"quinn-proto",
|
|
2534
|
+
"quinn-udp",
|
|
2535
|
+
"rustc-hash",
|
|
2536
|
+
"rustls",
|
|
2537
|
+
"socket2",
|
|
2538
|
+
"thiserror 2.0.12",
|
|
2539
|
+
"tokio",
|
|
2540
|
+
"tracing",
|
|
2541
|
+
"web-time",
|
|
2542
|
+
]
|
|
2543
|
+
|
|
2544
|
+
[[package]]
|
|
2545
|
+
name = "quinn-proto"
|
|
2546
|
+
version = "0.11.11"
|
|
2547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2548
|
+
checksum = "bcbafbbdbb0f638fe3f35f3c56739f77a8a1d070cb25603226c83339b391472b"
|
|
2549
|
+
dependencies = [
|
|
2550
|
+
"bytes",
|
|
2551
|
+
"getrandom 0.3.2",
|
|
2552
|
+
"rand 0.9.1",
|
|
2553
|
+
"ring",
|
|
2554
|
+
"rustc-hash",
|
|
2555
|
+
"rustls",
|
|
2556
|
+
"rustls-pki-types",
|
|
2557
|
+
"rustls-platform-verifier",
|
|
2558
|
+
"slab",
|
|
2559
|
+
"thiserror 2.0.12",
|
|
2560
|
+
"tinyvec",
|
|
2561
|
+
"tracing",
|
|
2562
|
+
"web-time",
|
|
2563
|
+
]
|
|
2564
|
+
|
|
2565
|
+
[[package]]
|
|
2566
|
+
name = "quinn-udp"
|
|
2567
|
+
version = "0.5.12"
|
|
2568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2569
|
+
checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
|
|
2570
|
+
dependencies = [
|
|
2571
|
+
"cfg_aliases",
|
|
2572
|
+
"libc",
|
|
2573
|
+
"once_cell",
|
|
2574
|
+
"socket2",
|
|
2575
|
+
"tracing",
|
|
2576
|
+
"windows-sys 0.59.0",
|
|
2577
|
+
]
|
|
2578
|
+
|
|
2579
|
+
[[package]]
|
|
2580
|
+
name = "quote"
|
|
2581
|
+
version = "1.0.37"
|
|
2582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
+
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
|
|
2584
|
+
dependencies = [
|
|
2585
|
+
"proc-macro2",
|
|
2586
|
+
]
|
|
2587
|
+
|
|
2588
|
+
[[package]]
|
|
2589
|
+
name = "r-efi"
|
|
2590
|
+
version = "5.2.0"
|
|
2591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
2593
|
+
|
|
2594
|
+
[[package]]
|
|
2595
|
+
name = "rand"
|
|
2596
|
+
version = "0.8.5"
|
|
2597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2598
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2599
|
+
dependencies = [
|
|
2600
|
+
"libc",
|
|
2601
|
+
"rand_chacha 0.3.1",
|
|
2602
|
+
"rand_core 0.6.4",
|
|
2603
|
+
]
|
|
2604
|
+
|
|
2605
|
+
[[package]]
|
|
2606
|
+
name = "rand"
|
|
2607
|
+
version = "0.9.1"
|
|
2608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2609
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
|
2610
|
+
dependencies = [
|
|
2611
|
+
"rand_chacha 0.9.0",
|
|
2612
|
+
"rand_core 0.9.3",
|
|
2613
|
+
]
|
|
2614
|
+
|
|
2615
|
+
[[package]]
|
|
2616
|
+
name = "rand_chacha"
|
|
2617
|
+
version = "0.3.1"
|
|
2618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2619
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2620
|
+
dependencies = [
|
|
2621
|
+
"ppv-lite86",
|
|
2622
|
+
"rand_core 0.6.4",
|
|
2623
|
+
]
|
|
2624
|
+
|
|
2625
|
+
[[package]]
|
|
2626
|
+
name = "rand_chacha"
|
|
2627
|
+
version = "0.9.0"
|
|
2628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2629
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2630
|
+
dependencies = [
|
|
2631
|
+
"ppv-lite86",
|
|
2632
|
+
"rand_core 0.9.3",
|
|
2633
|
+
]
|
|
2634
|
+
|
|
2635
|
+
[[package]]
|
|
2636
|
+
name = "rand_core"
|
|
2637
|
+
version = "0.6.4"
|
|
2638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2639
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2640
|
+
dependencies = [
|
|
2641
|
+
"getrandom 0.2.15",
|
|
2642
|
+
]
|
|
2643
|
+
|
|
2644
|
+
[[package]]
|
|
2645
|
+
name = "rand_core"
|
|
2646
|
+
version = "0.9.3"
|
|
2647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2648
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2649
|
+
dependencies = [
|
|
2650
|
+
"getrandom 0.3.2",
|
|
2651
|
+
]
|
|
2652
|
+
|
|
2653
|
+
[[package]]
|
|
2654
|
+
name = "redox_users"
|
|
2655
|
+
version = "0.4.6"
|
|
2656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2657
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2658
|
+
dependencies = [
|
|
2659
|
+
"getrandom 0.2.15",
|
|
2660
|
+
"libredox",
|
|
2661
|
+
"thiserror 1.0.64",
|
|
2662
|
+
]
|
|
2663
|
+
|
|
2664
|
+
[[package]]
|
|
2665
|
+
name = "ref-cast"
|
|
2666
|
+
version = "1.0.24"
|
|
2667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2668
|
+
checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
|
|
2669
|
+
dependencies = [
|
|
2670
|
+
"ref-cast-impl",
|
|
2671
|
+
]
|
|
2672
|
+
|
|
2673
|
+
[[package]]
|
|
2674
|
+
name = "ref-cast-impl"
|
|
2675
|
+
version = "1.0.24"
|
|
2676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2677
|
+
checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
|
|
2678
|
+
dependencies = [
|
|
2679
|
+
"proc-macro2",
|
|
2680
|
+
"quote",
|
|
2681
|
+
"syn 2.0.87",
|
|
2682
|
+
]
|
|
2683
|
+
|
|
2684
|
+
[[package]]
|
|
2685
|
+
name = "regex"
|
|
2686
|
+
version = "1.11.0"
|
|
2687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
+
checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8"
|
|
2689
|
+
dependencies = [
|
|
2690
|
+
"aho-corasick",
|
|
2691
|
+
"memchr",
|
|
2692
|
+
"regex-automata 0.4.8",
|
|
2693
|
+
"regex-syntax 0.8.5",
|
|
2694
|
+
]
|
|
2695
|
+
|
|
2696
|
+
[[package]]
|
|
2697
|
+
name = "regex-automata"
|
|
2698
|
+
version = "0.1.10"
|
|
2699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2700
|
+
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
|
2701
|
+
dependencies = [
|
|
2702
|
+
"regex-syntax 0.6.29",
|
|
2703
|
+
]
|
|
2704
|
+
|
|
2705
|
+
[[package]]
|
|
2706
|
+
name = "regex-automata"
|
|
2707
|
+
version = "0.4.8"
|
|
2708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2709
|
+
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
|
|
2710
|
+
dependencies = [
|
|
2711
|
+
"aho-corasick",
|
|
2712
|
+
"memchr",
|
|
2713
|
+
"regex-syntax 0.8.5",
|
|
2714
|
+
]
|
|
2715
|
+
|
|
2716
|
+
[[package]]
|
|
2717
|
+
name = "regex-syntax"
|
|
2718
|
+
version = "0.6.29"
|
|
2719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2720
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
2721
|
+
|
|
2722
|
+
[[package]]
|
|
2723
|
+
name = "regex-syntax"
|
|
2724
|
+
version = "0.8.5"
|
|
2725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2726
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
2727
|
+
|
|
2728
|
+
[[package]]
|
|
2729
|
+
name = "ring"
|
|
2730
|
+
version = "0.17.14"
|
|
2731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2732
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2733
|
+
dependencies = [
|
|
2734
|
+
"cc",
|
|
2735
|
+
"cfg-if",
|
|
2736
|
+
"getrandom 0.2.15",
|
|
2737
|
+
"libc",
|
|
2738
|
+
"untrusted",
|
|
2739
|
+
"windows-sys 0.52.0",
|
|
2740
|
+
]
|
|
2741
|
+
|
|
2742
|
+
[[package]]
|
|
2743
|
+
name = "ringbuffer-spsc"
|
|
2744
|
+
version = "0.1.13"
|
|
2745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2746
|
+
checksum = "3ac1597578561cb821dd07711c03cbfaec071eb5a0e526f7f05c86cc4c149d78"
|
|
2747
|
+
dependencies = [
|
|
2748
|
+
"array-init",
|
|
2749
|
+
"crossbeam",
|
|
2750
|
+
]
|
|
2751
|
+
|
|
2752
|
+
[[package]]
|
|
2753
|
+
name = "ron"
|
|
2754
|
+
version = "0.8.1"
|
|
2755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2756
|
+
checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
|
|
2757
|
+
dependencies = [
|
|
2758
|
+
"base64 0.21.7",
|
|
2759
|
+
"bitflags",
|
|
2760
|
+
"serde",
|
|
2761
|
+
"serde_derive",
|
|
2762
|
+
]
|
|
2763
|
+
|
|
2764
|
+
[[package]]
|
|
2765
|
+
name = "rsa"
|
|
2766
|
+
version = "0.9.8"
|
|
2767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2768
|
+
checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
|
|
2769
|
+
dependencies = [
|
|
2770
|
+
"const-oid",
|
|
2771
|
+
"digest",
|
|
2772
|
+
"num-bigint-dig",
|
|
2773
|
+
"num-integer",
|
|
2774
|
+
"num-traits",
|
|
2775
|
+
"pkcs1",
|
|
2776
|
+
"pkcs8",
|
|
2777
|
+
"rand_core 0.6.4",
|
|
2778
|
+
"signature",
|
|
2779
|
+
"spki",
|
|
2780
|
+
"subtle",
|
|
2781
|
+
"zeroize",
|
|
2782
|
+
]
|
|
2783
|
+
|
|
2784
|
+
[[package]]
|
|
2785
|
+
name = "rustc-demangle"
|
|
2786
|
+
version = "0.1.24"
|
|
2787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2788
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
2789
|
+
|
|
2790
|
+
[[package]]
|
|
2791
|
+
name = "rustc-hash"
|
|
2792
|
+
version = "2.1.1"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2795
|
+
|
|
2796
|
+
[[package]]
|
|
2797
|
+
name = "rustc_version"
|
|
2798
|
+
version = "0.4.1"
|
|
2799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2801
|
+
dependencies = [
|
|
2802
|
+
"semver",
|
|
2803
|
+
]
|
|
2804
|
+
|
|
2805
|
+
[[package]]
|
|
2806
|
+
name = "rusticata-macros"
|
|
2807
|
+
version = "4.1.0"
|
|
2808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2809
|
+
checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
|
|
2810
|
+
dependencies = [
|
|
2811
|
+
"nom",
|
|
2812
|
+
]
|
|
2813
|
+
|
|
2814
|
+
[[package]]
|
|
2815
|
+
name = "rustix"
|
|
2816
|
+
version = "0.38.37"
|
|
2817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2818
|
+
checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
|
|
2819
|
+
dependencies = [
|
|
2820
|
+
"bitflags",
|
|
2821
|
+
"errno",
|
|
2822
|
+
"libc",
|
|
2823
|
+
"linux-raw-sys",
|
|
2824
|
+
"windows-sys 0.52.0",
|
|
2825
|
+
]
|
|
2826
|
+
|
|
2827
|
+
[[package]]
|
|
2828
|
+
name = "rustls"
|
|
2829
|
+
version = "0.23.27"
|
|
2830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2831
|
+
checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
|
|
2832
|
+
dependencies = [
|
|
2833
|
+
"log",
|
|
2834
|
+
"once_cell",
|
|
2835
|
+
"ring",
|
|
2836
|
+
"rustls-pki-types",
|
|
2837
|
+
"rustls-webpki 0.103.2",
|
|
2838
|
+
"subtle",
|
|
2839
|
+
"zeroize",
|
|
2840
|
+
]
|
|
2841
|
+
|
|
2842
|
+
[[package]]
|
|
2843
|
+
name = "rustls-native-certs"
|
|
2844
|
+
version = "0.8.1"
|
|
2845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2846
|
+
checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
|
|
2847
|
+
dependencies = [
|
|
2848
|
+
"openssl-probe",
|
|
2849
|
+
"rustls-pki-types",
|
|
2850
|
+
"schannel",
|
|
2851
|
+
"security-framework",
|
|
2852
|
+
]
|
|
2853
|
+
|
|
2854
|
+
[[package]]
|
|
2855
|
+
name = "rustls-pemfile"
|
|
2856
|
+
version = "2.2.0"
|
|
2857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2858
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
2859
|
+
dependencies = [
|
|
2860
|
+
"rustls-pki-types",
|
|
2861
|
+
]
|
|
2862
|
+
|
|
2863
|
+
[[package]]
|
|
2864
|
+
name = "rustls-pki-types"
|
|
2865
|
+
version = "1.11.0"
|
|
2866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2867
|
+
checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
2868
|
+
dependencies = [
|
|
2869
|
+
"web-time",
|
|
2870
|
+
]
|
|
2871
|
+
|
|
2872
|
+
[[package]]
|
|
2873
|
+
name = "rustls-platform-verifier"
|
|
2874
|
+
version = "0.5.3"
|
|
2875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2876
|
+
checksum = "19787cda76408ec5404443dc8b31795c87cd8fec49762dc75fa727740d34acc1"
|
|
2877
|
+
dependencies = [
|
|
2878
|
+
"core-foundation",
|
|
2879
|
+
"core-foundation-sys",
|
|
2880
|
+
"jni",
|
|
2881
|
+
"log",
|
|
2882
|
+
"once_cell",
|
|
2883
|
+
"rustls",
|
|
2884
|
+
"rustls-native-certs",
|
|
2885
|
+
"rustls-platform-verifier-android",
|
|
2886
|
+
"rustls-webpki 0.103.2",
|
|
2887
|
+
"security-framework",
|
|
2888
|
+
"security-framework-sys",
|
|
2889
|
+
"webpki-root-certs 0.26.11",
|
|
2890
|
+
"windows-sys 0.59.0",
|
|
2891
|
+
]
|
|
2892
|
+
|
|
2893
|
+
[[package]]
|
|
2894
|
+
name = "rustls-platform-verifier-android"
|
|
2895
|
+
version = "0.1.1"
|
|
2896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
2898
|
+
|
|
2899
|
+
[[package]]
|
|
2900
|
+
name = "rustls-webpki"
|
|
2901
|
+
version = "0.102.8"
|
|
2902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2903
|
+
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
|
|
2904
|
+
dependencies = [
|
|
2905
|
+
"ring",
|
|
2906
|
+
"rustls-pki-types",
|
|
2907
|
+
"untrusted",
|
|
2908
|
+
]
|
|
2909
|
+
|
|
2910
|
+
[[package]]
|
|
2911
|
+
name = "rustls-webpki"
|
|
2912
|
+
version = "0.103.2"
|
|
2913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
+
checksum = "7149975849f1abb3832b246010ef62ccc80d3a76169517ada7188252b9cfb437"
|
|
2915
|
+
dependencies = [
|
|
2916
|
+
"ring",
|
|
2917
|
+
"rustls-pki-types",
|
|
2918
|
+
"untrusted",
|
|
2919
|
+
]
|
|
2920
|
+
|
|
2921
|
+
[[package]]
|
|
2922
|
+
name = "rustversion"
|
|
2923
|
+
version = "1.0.20"
|
|
2924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2925
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
2926
|
+
|
|
2927
|
+
[[package]]
|
|
2928
|
+
name = "ryu"
|
|
2929
|
+
version = "1.0.18"
|
|
2930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2931
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
2932
|
+
|
|
2933
|
+
[[package]]
|
|
2934
|
+
name = "same-file"
|
|
2935
|
+
version = "1.0.6"
|
|
2936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2937
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2938
|
+
dependencies = [
|
|
2939
|
+
"winapi-util",
|
|
2940
|
+
]
|
|
2941
|
+
|
|
2942
|
+
[[package]]
|
|
2943
|
+
name = "schannel"
|
|
2944
|
+
version = "0.1.27"
|
|
2945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
|
2947
|
+
dependencies = [
|
|
2948
|
+
"windows-sys 0.59.0",
|
|
2949
|
+
]
|
|
2950
|
+
|
|
2951
|
+
[[package]]
|
|
2952
|
+
name = "schemars"
|
|
2953
|
+
version = "0.8.22"
|
|
2954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2955
|
+
checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
|
|
2956
|
+
dependencies = [
|
|
2957
|
+
"dyn-clone",
|
|
2958
|
+
"either",
|
|
2959
|
+
"schemars_derive",
|
|
2960
|
+
"serde",
|
|
2961
|
+
"serde_json",
|
|
2962
|
+
]
|
|
2963
|
+
|
|
2964
|
+
[[package]]
|
|
2965
|
+
name = "schemars_derive"
|
|
2966
|
+
version = "0.8.22"
|
|
2967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2968
|
+
checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
|
|
2969
|
+
dependencies = [
|
|
2970
|
+
"proc-macro2",
|
|
2971
|
+
"quote",
|
|
2972
|
+
"serde_derive_internals",
|
|
2973
|
+
"syn 2.0.87",
|
|
2974
|
+
]
|
|
2975
|
+
|
|
2976
|
+
[[package]]
|
|
2977
|
+
name = "scopeguard"
|
|
2978
|
+
version = "1.2.0"
|
|
2979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2980
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2981
|
+
|
|
2982
|
+
[[package]]
|
|
2983
|
+
name = "secrecy"
|
|
2984
|
+
version = "0.8.0"
|
|
2985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2986
|
+
checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e"
|
|
2987
|
+
dependencies = [
|
|
2988
|
+
"serde",
|
|
2989
|
+
"zeroize",
|
|
2990
|
+
]
|
|
2991
|
+
|
|
2992
|
+
[[package]]
|
|
2993
|
+
name = "security-framework"
|
|
2994
|
+
version = "3.2.0"
|
|
2995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2996
|
+
checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
|
|
2997
|
+
dependencies = [
|
|
2998
|
+
"bitflags",
|
|
2999
|
+
"core-foundation",
|
|
3000
|
+
"core-foundation-sys",
|
|
3001
|
+
"libc",
|
|
3002
|
+
"security-framework-sys",
|
|
3003
|
+
]
|
|
3004
|
+
|
|
3005
|
+
[[package]]
|
|
3006
|
+
name = "security-framework-sys"
|
|
3007
|
+
version = "2.14.0"
|
|
3008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3009
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
|
3010
|
+
dependencies = [
|
|
3011
|
+
"core-foundation-sys",
|
|
3012
|
+
"libc",
|
|
3013
|
+
]
|
|
3014
|
+
|
|
3015
|
+
[[package]]
|
|
3016
|
+
name = "semver"
|
|
3017
|
+
version = "1.0.23"
|
|
3018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3019
|
+
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
|
3020
|
+
dependencies = [
|
|
3021
|
+
"serde",
|
|
3022
|
+
]
|
|
3023
|
+
|
|
3024
|
+
[[package]]
|
|
3025
|
+
name = "serde"
|
|
3026
|
+
version = "1.0.219"
|
|
3027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3028
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
3029
|
+
dependencies = [
|
|
3030
|
+
"serde_derive",
|
|
3031
|
+
]
|
|
3032
|
+
|
|
3033
|
+
[[package]]
|
|
3034
|
+
name = "serde_derive"
|
|
3035
|
+
version = "1.0.219"
|
|
3036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3037
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
3038
|
+
dependencies = [
|
|
3039
|
+
"proc-macro2",
|
|
3040
|
+
"quote",
|
|
3041
|
+
"syn 2.0.87",
|
|
3042
|
+
]
|
|
3043
|
+
|
|
3044
|
+
[[package]]
|
|
3045
|
+
name = "serde_derive_internals"
|
|
3046
|
+
version = "0.29.1"
|
|
3047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3048
|
+
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
3049
|
+
dependencies = [
|
|
3050
|
+
"proc-macro2",
|
|
3051
|
+
"quote",
|
|
3052
|
+
"syn 2.0.87",
|
|
3053
|
+
]
|
|
3054
|
+
|
|
3055
|
+
[[package]]
|
|
3056
|
+
name = "serde_json"
|
|
3057
|
+
version = "1.0.128"
|
|
3058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3059
|
+
checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
|
|
3060
|
+
dependencies = [
|
|
3061
|
+
"itoa",
|
|
3062
|
+
"memchr",
|
|
3063
|
+
"ryu",
|
|
3064
|
+
"serde",
|
|
3065
|
+
]
|
|
3066
|
+
|
|
3067
|
+
[[package]]
|
|
3068
|
+
name = "serde_spanned"
|
|
3069
|
+
version = "0.6.8"
|
|
3070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3071
|
+
checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
|
|
3072
|
+
dependencies = [
|
|
3073
|
+
"serde",
|
|
3074
|
+
]
|
|
3075
|
+
|
|
3076
|
+
[[package]]
|
|
3077
|
+
name = "serde_test"
|
|
3078
|
+
version = "1.0.177"
|
|
3079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3080
|
+
checksum = "7f901ee573cab6b3060453d2d5f0bae4e6d628c23c0a962ff9b5f1d7c8d4f1ed"
|
|
3081
|
+
dependencies = [
|
|
3082
|
+
"serde",
|
|
3083
|
+
]
|
|
3084
|
+
|
|
3085
|
+
[[package]]
|
|
3086
|
+
name = "serde_with"
|
|
3087
|
+
version = "3.12.0"
|
|
3088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3089
|
+
checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
|
|
3090
|
+
dependencies = [
|
|
3091
|
+
"base64 0.22.1",
|
|
3092
|
+
"chrono",
|
|
3093
|
+
"hex",
|
|
3094
|
+
"indexmap 1.9.3",
|
|
3095
|
+
"indexmap 2.6.0",
|
|
3096
|
+
"serde",
|
|
3097
|
+
"serde_derive",
|
|
3098
|
+
"serde_json",
|
|
3099
|
+
"serde_with_macros",
|
|
3100
|
+
"time",
|
|
3101
|
+
]
|
|
3102
|
+
|
|
3103
|
+
[[package]]
|
|
3104
|
+
name = "serde_with_macros"
|
|
3105
|
+
version = "3.12.0"
|
|
3106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3107
|
+
checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
|
|
3108
|
+
dependencies = [
|
|
3109
|
+
"darling",
|
|
3110
|
+
"proc-macro2",
|
|
3111
|
+
"quote",
|
|
3112
|
+
"syn 2.0.87",
|
|
3113
|
+
]
|
|
3114
|
+
|
|
3115
|
+
[[package]]
|
|
3116
|
+
name = "serde_yaml"
|
|
3117
|
+
version = "0.9.34+deprecated"
|
|
3118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3119
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
3120
|
+
dependencies = [
|
|
3121
|
+
"indexmap 2.6.0",
|
|
3122
|
+
"itoa",
|
|
3123
|
+
"ryu",
|
|
3124
|
+
"serde",
|
|
3125
|
+
"unsafe-libyaml",
|
|
3126
|
+
]
|
|
3127
|
+
|
|
3128
|
+
[[package]]
|
|
3129
|
+
name = "sha1"
|
|
3130
|
+
version = "0.10.6"
|
|
3131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3132
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
3133
|
+
dependencies = [
|
|
3134
|
+
"cfg-if",
|
|
3135
|
+
"cpufeatures",
|
|
3136
|
+
"digest",
|
|
3137
|
+
]
|
|
3138
|
+
|
|
3139
|
+
[[package]]
|
|
3140
|
+
name = "sha1_smol"
|
|
3141
|
+
version = "1.0.1"
|
|
3142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3143
|
+
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
|
|
3144
|
+
|
|
3145
|
+
[[package]]
|
|
3146
|
+
name = "sha2"
|
|
3147
|
+
version = "0.10.9"
|
|
3148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3149
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3150
|
+
dependencies = [
|
|
3151
|
+
"cfg-if",
|
|
3152
|
+
"cpufeatures",
|
|
3153
|
+
"digest",
|
|
3154
|
+
]
|
|
3155
|
+
|
|
3156
|
+
[[package]]
|
|
3157
|
+
name = "sha3"
|
|
3158
|
+
version = "0.10.8"
|
|
3159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3160
|
+
checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
|
|
3161
|
+
dependencies = [
|
|
3162
|
+
"digest",
|
|
3163
|
+
"keccak",
|
|
3164
|
+
]
|
|
3165
|
+
|
|
3166
|
+
[[package]]
|
|
3167
|
+
name = "sharded-slab"
|
|
3168
|
+
version = "0.1.7"
|
|
3169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3170
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3171
|
+
dependencies = [
|
|
3172
|
+
"lazy_static",
|
|
3173
|
+
]
|
|
3174
|
+
|
|
3175
|
+
[[package]]
|
|
3176
|
+
name = "shellexpand"
|
|
3177
|
+
version = "3.1.1"
|
|
3178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3179
|
+
checksum = "8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb"
|
|
3180
|
+
dependencies = [
|
|
3181
|
+
"dirs",
|
|
3182
|
+
]
|
|
3183
|
+
|
|
3184
|
+
[[package]]
|
|
3185
|
+
name = "shlex"
|
|
3186
|
+
version = "1.3.0"
|
|
3187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3188
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3189
|
+
|
|
3190
|
+
[[package]]
|
|
3191
|
+
name = "signature"
|
|
3192
|
+
version = "2.2.0"
|
|
3193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3194
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
3195
|
+
dependencies = [
|
|
3196
|
+
"digest",
|
|
3197
|
+
"rand_core 0.6.4",
|
|
3198
|
+
]
|
|
3199
|
+
|
|
3200
|
+
[[package]]
|
|
3201
|
+
name = "siphasher"
|
|
3202
|
+
version = "1.0.1"
|
|
3203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3204
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
3205
|
+
|
|
3206
|
+
[[package]]
|
|
3207
|
+
name = "slab"
|
|
3208
|
+
version = "0.4.9"
|
|
3209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3210
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
3211
|
+
dependencies = [
|
|
3212
|
+
"autocfg",
|
|
3213
|
+
]
|
|
3214
|
+
|
|
3215
|
+
[[package]]
|
|
3216
|
+
name = "smallvec"
|
|
3217
|
+
version = "1.15.0"
|
|
3218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3219
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
3220
|
+
|
|
3221
|
+
[[package]]
|
|
3222
|
+
name = "socket2"
|
|
3223
|
+
version = "0.5.9"
|
|
3224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3225
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
|
3226
|
+
dependencies = [
|
|
3227
|
+
"libc",
|
|
3228
|
+
"windows-sys 0.52.0",
|
|
3229
|
+
]
|
|
3230
|
+
|
|
3231
|
+
[[package]]
|
|
3232
|
+
name = "spin"
|
|
3233
|
+
version = "0.9.8"
|
|
3234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3235
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
3236
|
+
dependencies = [
|
|
3237
|
+
"lock_api",
|
|
3238
|
+
]
|
|
3239
|
+
|
|
3240
|
+
[[package]]
|
|
3241
|
+
name = "spki"
|
|
3242
|
+
version = "0.7.3"
|
|
3243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3244
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
3245
|
+
dependencies = [
|
|
3246
|
+
"base64ct",
|
|
3247
|
+
"der",
|
|
3248
|
+
]
|
|
3249
|
+
|
|
3250
|
+
[[package]]
|
|
3251
|
+
name = "stable_deref_trait"
|
|
3252
|
+
version = "1.2.0"
|
|
3253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3254
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
3255
|
+
|
|
3256
|
+
[[package]]
|
|
3257
|
+
name = "static_assertions"
|
|
3258
|
+
version = "1.1.0"
|
|
3259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3260
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3261
|
+
|
|
3262
|
+
[[package]]
|
|
3263
|
+
name = "strsim"
|
|
3264
|
+
version = "0.11.1"
|
|
3265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3266
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3267
|
+
|
|
3268
|
+
[[package]]
|
|
3269
|
+
name = "subtle"
|
|
3270
|
+
version = "2.6.1"
|
|
3271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3272
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3273
|
+
|
|
3274
|
+
[[package]]
|
|
3275
|
+
name = "syn"
|
|
3276
|
+
version = "1.0.109"
|
|
3277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3278
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
3279
|
+
dependencies = [
|
|
3280
|
+
"proc-macro2",
|
|
3281
|
+
"quote",
|
|
3282
|
+
"unicode-ident",
|
|
3283
|
+
]
|
|
3284
|
+
|
|
3285
|
+
[[package]]
|
|
3286
|
+
name = "syn"
|
|
3287
|
+
version = "2.0.87"
|
|
3288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3289
|
+
checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d"
|
|
3290
|
+
dependencies = [
|
|
3291
|
+
"proc-macro2",
|
|
3292
|
+
"quote",
|
|
3293
|
+
"unicode-ident",
|
|
3294
|
+
]
|
|
3295
|
+
|
|
3296
|
+
[[package]]
|
|
3297
|
+
name = "synstructure"
|
|
3298
|
+
version = "0.13.2"
|
|
3299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3300
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3301
|
+
dependencies = [
|
|
3302
|
+
"proc-macro2",
|
|
3303
|
+
"quote",
|
|
3304
|
+
"syn 2.0.87",
|
|
3305
|
+
]
|
|
3306
|
+
|
|
3307
|
+
[[package]]
|
|
3308
|
+
name = "target-lexicon"
|
|
3309
|
+
version = "0.13.2"
|
|
3310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3311
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
3312
|
+
|
|
3313
|
+
[[package]]
|
|
3314
|
+
name = "tempfile"
|
|
3315
|
+
version = "3.13.0"
|
|
3316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3317
|
+
checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
|
|
3318
|
+
dependencies = [
|
|
3319
|
+
"cfg-if",
|
|
3320
|
+
"fastrand",
|
|
3321
|
+
"once_cell",
|
|
3322
|
+
"rustix",
|
|
3323
|
+
"windows-sys 0.59.0",
|
|
3324
|
+
]
|
|
3325
|
+
|
|
3326
|
+
[[package]]
|
|
3327
|
+
name = "terminal_size"
|
|
3328
|
+
version = "0.1.17"
|
|
3329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3330
|
+
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
|
|
3331
|
+
dependencies = [
|
|
3332
|
+
"libc",
|
|
3333
|
+
"winapi",
|
|
3334
|
+
]
|
|
3335
|
+
|
|
3336
|
+
[[package]]
|
|
3337
|
+
name = "thiserror"
|
|
3338
|
+
version = "1.0.64"
|
|
3339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3340
|
+
checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
|
|
3341
|
+
dependencies = [
|
|
3342
|
+
"thiserror-impl 1.0.64",
|
|
3343
|
+
]
|
|
3344
|
+
|
|
3345
|
+
[[package]]
|
|
3346
|
+
name = "thiserror"
|
|
3347
|
+
version = "2.0.12"
|
|
3348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3349
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
3350
|
+
dependencies = [
|
|
3351
|
+
"thiserror-impl 2.0.12",
|
|
3352
|
+
]
|
|
3353
|
+
|
|
3354
|
+
[[package]]
|
|
3355
|
+
name = "thiserror-impl"
|
|
3356
|
+
version = "1.0.64"
|
|
3357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3358
|
+
checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
|
|
3359
|
+
dependencies = [
|
|
3360
|
+
"proc-macro2",
|
|
3361
|
+
"quote",
|
|
3362
|
+
"syn 2.0.87",
|
|
3363
|
+
]
|
|
3364
|
+
|
|
3365
|
+
[[package]]
|
|
3366
|
+
name = "thiserror-impl"
|
|
3367
|
+
version = "2.0.12"
|
|
3368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3369
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
3370
|
+
dependencies = [
|
|
3371
|
+
"proc-macro2",
|
|
3372
|
+
"quote",
|
|
3373
|
+
"syn 2.0.87",
|
|
3374
|
+
]
|
|
3375
|
+
|
|
3376
|
+
[[package]]
|
|
3377
|
+
name = "thread_local"
|
|
3378
|
+
version = "1.1.8"
|
|
3379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3380
|
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
|
3381
|
+
dependencies = [
|
|
3382
|
+
"cfg-if",
|
|
3383
|
+
"once_cell",
|
|
3384
|
+
]
|
|
3385
|
+
|
|
3386
|
+
[[package]]
|
|
3387
|
+
name = "time"
|
|
3388
|
+
version = "0.3.41"
|
|
3389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3390
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
3391
|
+
dependencies = [
|
|
3392
|
+
"deranged",
|
|
3393
|
+
"itoa",
|
|
3394
|
+
"num-conv",
|
|
3395
|
+
"powerfmt",
|
|
3396
|
+
"serde",
|
|
3397
|
+
"time-core",
|
|
3398
|
+
"time-macros",
|
|
3399
|
+
]
|
|
3400
|
+
|
|
3401
|
+
[[package]]
|
|
3402
|
+
name = "time-core"
|
|
3403
|
+
version = "0.1.4"
|
|
3404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3405
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
3406
|
+
|
|
3407
|
+
[[package]]
|
|
3408
|
+
name = "time-macros"
|
|
3409
|
+
version = "0.2.22"
|
|
3410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3411
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
|
3412
|
+
dependencies = [
|
|
3413
|
+
"num-conv",
|
|
3414
|
+
"time-core",
|
|
3415
|
+
]
|
|
3416
|
+
|
|
3417
|
+
[[package]]
|
|
3418
|
+
name = "tiny-fn"
|
|
3419
|
+
version = "0.1.7"
|
|
3420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3421
|
+
checksum = "2fde9a76dac5751480f711f327371c809d7f8a9f036436e6237d67859adbf3bd"
|
|
3422
|
+
|
|
3423
|
+
[[package]]
|
|
3424
|
+
name = "tinystr"
|
|
3425
|
+
version = "0.7.6"
|
|
3426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3427
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
3428
|
+
dependencies = [
|
|
3429
|
+
"displaydoc",
|
|
3430
|
+
"zerovec",
|
|
3431
|
+
]
|
|
3432
|
+
|
|
3433
|
+
[[package]]
|
|
3434
|
+
name = "tinyvec"
|
|
3435
|
+
version = "1.9.0"
|
|
3436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3437
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
3438
|
+
dependencies = [
|
|
3439
|
+
"tinyvec_macros",
|
|
3440
|
+
]
|
|
3441
|
+
|
|
3442
|
+
[[package]]
|
|
3443
|
+
name = "tinyvec_macros"
|
|
3444
|
+
version = "0.1.1"
|
|
3445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3446
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3447
|
+
|
|
3448
|
+
[[package]]
|
|
3449
|
+
name = "tls-listener"
|
|
3450
|
+
version = "0.11.0"
|
|
3451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3452
|
+
checksum = "ab41256c16d6fc2b3021545f20bf77a73200b18bd54040ac656dddfca6205bfa"
|
|
3453
|
+
dependencies = [
|
|
3454
|
+
"futures-util",
|
|
3455
|
+
"pin-project-lite",
|
|
3456
|
+
"thiserror 2.0.12",
|
|
3457
|
+
"tokio",
|
|
3458
|
+
"tokio-rustls",
|
|
3459
|
+
]
|
|
3460
|
+
|
|
3461
|
+
[[package]]
|
|
3462
|
+
name = "token-cell"
|
|
3463
|
+
version = "1.5.0"
|
|
3464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3465
|
+
checksum = "f4a2b964fdb303b08a4eab04d7c1bad2bca33f8eee334ccd28802f1041c6eb87"
|
|
3466
|
+
dependencies = [
|
|
3467
|
+
"paste",
|
|
3468
|
+
]
|
|
3469
|
+
|
|
3470
|
+
[[package]]
|
|
3471
|
+
name = "tokio"
|
|
3472
|
+
version = "1.45.0"
|
|
3473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3474
|
+
checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
|
|
3475
|
+
dependencies = [
|
|
3476
|
+
"backtrace",
|
|
3477
|
+
"bytes",
|
|
3478
|
+
"libc",
|
|
3479
|
+
"mio",
|
|
3480
|
+
"pin-project-lite",
|
|
3481
|
+
"socket2",
|
|
3482
|
+
"tokio-macros",
|
|
3483
|
+
"windows-sys 0.52.0",
|
|
3484
|
+
]
|
|
3485
|
+
|
|
3486
|
+
[[package]]
|
|
3487
|
+
name = "tokio-macros"
|
|
3488
|
+
version = "2.5.0"
|
|
3489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3490
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
3491
|
+
dependencies = [
|
|
3492
|
+
"proc-macro2",
|
|
3493
|
+
"quote",
|
|
3494
|
+
"syn 2.0.87",
|
|
3495
|
+
]
|
|
3496
|
+
|
|
3497
|
+
[[package]]
|
|
3498
|
+
name = "tokio-rustls"
|
|
3499
|
+
version = "0.26.2"
|
|
3500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3501
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
3502
|
+
dependencies = [
|
|
3503
|
+
"rustls",
|
|
3504
|
+
"tokio",
|
|
3505
|
+
]
|
|
3506
|
+
|
|
3507
|
+
[[package]]
|
|
3508
|
+
name = "tokio-tungstenite"
|
|
3509
|
+
version = "0.24.0"
|
|
3510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3511
|
+
checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9"
|
|
3512
|
+
dependencies = [
|
|
3513
|
+
"futures-util",
|
|
3514
|
+
"log",
|
|
3515
|
+
"tokio",
|
|
3516
|
+
"tungstenite",
|
|
3517
|
+
]
|
|
3518
|
+
|
|
3519
|
+
[[package]]
|
|
3520
|
+
name = "tokio-util"
|
|
3521
|
+
version = "0.7.15"
|
|
3522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3523
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
|
3524
|
+
dependencies = [
|
|
3525
|
+
"bytes",
|
|
3526
|
+
"futures-core",
|
|
3527
|
+
"futures-sink",
|
|
3528
|
+
"futures-util",
|
|
3529
|
+
"hashbrown 0.15.2",
|
|
3530
|
+
"pin-project-lite",
|
|
3531
|
+
"tokio",
|
|
3532
|
+
]
|
|
3533
|
+
|
|
3534
|
+
[[package]]
|
|
3535
|
+
name = "toml"
|
|
3536
|
+
version = "0.8.19"
|
|
3537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3538
|
+
checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
|
|
3539
|
+
dependencies = [
|
|
3540
|
+
"serde",
|
|
3541
|
+
"serde_spanned",
|
|
3542
|
+
"toml_datetime",
|
|
3543
|
+
"toml_edit",
|
|
3544
|
+
]
|
|
3545
|
+
|
|
3546
|
+
[[package]]
|
|
3547
|
+
name = "toml_datetime"
|
|
3548
|
+
version = "0.6.8"
|
|
3549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3550
|
+
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
|
|
3551
|
+
dependencies = [
|
|
3552
|
+
"serde",
|
|
3553
|
+
]
|
|
3554
|
+
|
|
3555
|
+
[[package]]
|
|
3556
|
+
name = "toml_edit"
|
|
3557
|
+
version = "0.22.22"
|
|
3558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3559
|
+
checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
|
|
3560
|
+
dependencies = [
|
|
3561
|
+
"indexmap 2.6.0",
|
|
3562
|
+
"serde",
|
|
3563
|
+
"serde_spanned",
|
|
3564
|
+
"toml_datetime",
|
|
3565
|
+
"winnow",
|
|
3566
|
+
]
|
|
3567
|
+
|
|
3568
|
+
[[package]]
|
|
3569
|
+
name = "tracing"
|
|
3570
|
+
version = "0.1.40"
|
|
3571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3572
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
3573
|
+
dependencies = [
|
|
3574
|
+
"log",
|
|
3575
|
+
"pin-project-lite",
|
|
3576
|
+
"tracing-attributes",
|
|
3577
|
+
"tracing-core",
|
|
3578
|
+
]
|
|
3579
|
+
|
|
3580
|
+
[[package]]
|
|
3581
|
+
name = "tracing-attributes"
|
|
3582
|
+
version = "0.1.27"
|
|
3583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3584
|
+
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
3585
|
+
dependencies = [
|
|
3586
|
+
"proc-macro2",
|
|
3587
|
+
"quote",
|
|
3588
|
+
"syn 2.0.87",
|
|
3589
|
+
]
|
|
3590
|
+
|
|
3591
|
+
[[package]]
|
|
3592
|
+
name = "tracing-core"
|
|
3593
|
+
version = "0.1.32"
|
|
3594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3595
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
3596
|
+
dependencies = [
|
|
3597
|
+
"once_cell",
|
|
3598
|
+
"valuable",
|
|
3599
|
+
]
|
|
3600
|
+
|
|
3601
|
+
[[package]]
|
|
3602
|
+
name = "tracing-log"
|
|
3603
|
+
version = "0.2.0"
|
|
3604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3605
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3606
|
+
dependencies = [
|
|
3607
|
+
"log",
|
|
3608
|
+
"once_cell",
|
|
3609
|
+
"tracing-core",
|
|
3610
|
+
]
|
|
3611
|
+
|
|
3612
|
+
[[package]]
|
|
3613
|
+
name = "tracing-serde"
|
|
3614
|
+
version = "0.1.3"
|
|
3615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3616
|
+
checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
|
|
3617
|
+
dependencies = [
|
|
3618
|
+
"serde",
|
|
3619
|
+
"tracing-core",
|
|
3620
|
+
]
|
|
3621
|
+
|
|
3622
|
+
[[package]]
|
|
3623
|
+
name = "tracing-subscriber"
|
|
3624
|
+
version = "0.3.18"
|
|
3625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3626
|
+
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
|
|
3627
|
+
dependencies = [
|
|
3628
|
+
"matchers",
|
|
3629
|
+
"nu-ansi-term",
|
|
3630
|
+
"once_cell",
|
|
3631
|
+
"regex",
|
|
3632
|
+
"serde",
|
|
3633
|
+
"serde_json",
|
|
3634
|
+
"sharded-slab",
|
|
3635
|
+
"smallvec",
|
|
3636
|
+
"thread_local",
|
|
3637
|
+
"tracing",
|
|
3638
|
+
"tracing-core",
|
|
3639
|
+
"tracing-log",
|
|
3640
|
+
"tracing-serde",
|
|
3641
|
+
]
|
|
3642
|
+
|
|
3643
|
+
[[package]]
|
|
3644
|
+
name = "tungstenite"
|
|
3645
|
+
version = "0.24.0"
|
|
3646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3647
|
+
checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a"
|
|
3648
|
+
dependencies = [
|
|
3649
|
+
"byteorder",
|
|
3650
|
+
"bytes",
|
|
3651
|
+
"data-encoding",
|
|
3652
|
+
"http",
|
|
3653
|
+
"httparse",
|
|
3654
|
+
"log",
|
|
3655
|
+
"rand 0.8.5",
|
|
3656
|
+
"sha1",
|
|
3657
|
+
"thiserror 1.0.64",
|
|
3658
|
+
"utf-8",
|
|
3659
|
+
]
|
|
3660
|
+
|
|
3661
|
+
[[package]]
|
|
3662
|
+
name = "twox-hash"
|
|
3663
|
+
version = "1.6.3"
|
|
3664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3665
|
+
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
|
|
3666
|
+
dependencies = [
|
|
3667
|
+
"cfg-if",
|
|
3668
|
+
"static_assertions",
|
|
3669
|
+
]
|
|
3670
|
+
|
|
3671
|
+
[[package]]
|
|
3672
|
+
name = "typenum"
|
|
3673
|
+
version = "1.18.0"
|
|
3674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3675
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
3676
|
+
|
|
3677
|
+
[[package]]
|
|
3678
|
+
name = "ucd-trie"
|
|
3679
|
+
version = "0.1.7"
|
|
3680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3681
|
+
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
3682
|
+
|
|
3683
|
+
[[package]]
|
|
3684
|
+
name = "uhlc"
|
|
3685
|
+
version = "0.8.0"
|
|
3686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3687
|
+
checksum = "79ac3c37bd9506595768f0387bd39d644525728b4a1d783218acabfb56356db7"
|
|
3688
|
+
dependencies = [
|
|
3689
|
+
"humantime",
|
|
3690
|
+
"lazy_static",
|
|
3691
|
+
"log",
|
|
3692
|
+
"rand 0.8.5",
|
|
3693
|
+
"serde",
|
|
3694
|
+
"spin",
|
|
3695
|
+
]
|
|
3696
|
+
|
|
3697
|
+
[[package]]
|
|
3698
|
+
name = "unicode-ident"
|
|
3699
|
+
version = "1.0.13"
|
|
3700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3701
|
+
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
|
|
3702
|
+
|
|
3703
|
+
[[package]]
|
|
3704
|
+
name = "unicode-width"
|
|
3705
|
+
version = "0.1.14"
|
|
3706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3707
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
3708
|
+
|
|
3709
|
+
[[package]]
|
|
3710
|
+
name = "unicode-xid"
|
|
3711
|
+
version = "0.2.6"
|
|
3712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3713
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3714
|
+
|
|
3715
|
+
[[package]]
|
|
3716
|
+
name = "unindent"
|
|
3717
|
+
version = "0.2.4"
|
|
3718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3719
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3720
|
+
|
|
3721
|
+
[[package]]
|
|
3722
|
+
name = "unsafe-libyaml"
|
|
3723
|
+
version = "0.2.11"
|
|
3724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3725
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
3726
|
+
|
|
3727
|
+
[[package]]
|
|
3728
|
+
name = "untrusted"
|
|
3729
|
+
version = "0.9.0"
|
|
3730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3731
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3732
|
+
|
|
3733
|
+
[[package]]
|
|
3734
|
+
name = "unzip-n"
|
|
3735
|
+
version = "0.1.2"
|
|
3736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3737
|
+
checksum = "c2e7e85a0596447f0f2ac090e16bc4c516c6fe91771fb0c0ccf7fa3dae896b9c"
|
|
3738
|
+
dependencies = [
|
|
3739
|
+
"proc-macro2",
|
|
3740
|
+
"quote",
|
|
3741
|
+
"syn 1.0.109",
|
|
3742
|
+
]
|
|
3743
|
+
|
|
3744
|
+
[[package]]
|
|
3745
|
+
name = "url"
|
|
3746
|
+
version = "2.5.4"
|
|
3747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3748
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
3749
|
+
dependencies = [
|
|
3750
|
+
"form_urlencoded",
|
|
3751
|
+
"idna",
|
|
3752
|
+
"percent-encoding",
|
|
3753
|
+
]
|
|
3754
|
+
|
|
3755
|
+
[[package]]
|
|
3756
|
+
name = "utf-8"
|
|
3757
|
+
version = "0.7.6"
|
|
3758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3759
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
3760
|
+
|
|
3761
|
+
[[package]]
|
|
3762
|
+
name = "utf16_iter"
|
|
3763
|
+
version = "1.0.5"
|
|
3764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3765
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
3766
|
+
|
|
3767
|
+
[[package]]
|
|
3768
|
+
name = "utf8_iter"
|
|
3769
|
+
version = "1.0.4"
|
|
3770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3771
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3772
|
+
|
|
3773
|
+
[[package]]
|
|
3774
|
+
name = "utf8parse"
|
|
3775
|
+
version = "0.2.2"
|
|
3776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3777
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3778
|
+
|
|
3779
|
+
[[package]]
|
|
3780
|
+
name = "uuid"
|
|
3781
|
+
version = "1.10.0"
|
|
3782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3783
|
+
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
|
|
3784
|
+
dependencies = [
|
|
3785
|
+
"getrandom 0.2.15",
|
|
3786
|
+
]
|
|
3787
|
+
|
|
3788
|
+
[[package]]
|
|
3789
|
+
name = "validated_struct"
|
|
3790
|
+
version = "2.1.1"
|
|
3791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3792
|
+
checksum = "0251cab911130b095b8190d5480729c5e6a05e36e617658039e4bfcfd879c153"
|
|
3793
|
+
dependencies = [
|
|
3794
|
+
"json5",
|
|
3795
|
+
"serde",
|
|
3796
|
+
"serde_json",
|
|
3797
|
+
"validated_struct_macros",
|
|
3798
|
+
]
|
|
3799
|
+
|
|
3800
|
+
[[package]]
|
|
3801
|
+
name = "validated_struct_macros"
|
|
3802
|
+
version = "2.1.1"
|
|
3803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3804
|
+
checksum = "dcba0282a9f9297af06b91ff22615e7f77f0ab66f75fc95898960d1604fc7fd7"
|
|
3805
|
+
dependencies = [
|
|
3806
|
+
"proc-macro2",
|
|
3807
|
+
"quote",
|
|
3808
|
+
"syn 2.0.87",
|
|
3809
|
+
"unzip-n",
|
|
3810
|
+
]
|
|
3811
|
+
|
|
3812
|
+
[[package]]
|
|
3813
|
+
name = "valuable"
|
|
3814
|
+
version = "0.1.1"
|
|
3815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3816
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
3817
|
+
|
|
3818
|
+
[[package]]
|
|
3819
|
+
name = "vec_map"
|
|
3820
|
+
version = "0.8.2"
|
|
3821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3822
|
+
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
|
|
3823
|
+
|
|
3824
|
+
[[package]]
|
|
3825
|
+
name = "version_check"
|
|
3826
|
+
version = "0.9.5"
|
|
3827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3828
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3829
|
+
|
|
3830
|
+
[[package]]
|
|
3831
|
+
name = "walkdir"
|
|
3832
|
+
version = "2.5.0"
|
|
3833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3834
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3835
|
+
dependencies = [
|
|
3836
|
+
"same-file",
|
|
3837
|
+
"winapi-util",
|
|
3838
|
+
]
|
|
3839
|
+
|
|
3840
|
+
[[package]]
|
|
3841
|
+
name = "wasi"
|
|
3842
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
3843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3844
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3845
|
+
|
|
3846
|
+
[[package]]
|
|
3847
|
+
name = "wasi"
|
|
3848
|
+
version = "0.14.2+wasi-0.2.4"
|
|
3849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3850
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
3851
|
+
dependencies = [
|
|
3852
|
+
"wit-bindgen-rt",
|
|
3853
|
+
]
|
|
3854
|
+
|
|
3855
|
+
[[package]]
|
|
3856
|
+
name = "wasm-bindgen"
|
|
3857
|
+
version = "0.2.100"
|
|
3858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3859
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
3860
|
+
dependencies = [
|
|
3861
|
+
"cfg-if",
|
|
3862
|
+
"once_cell",
|
|
3863
|
+
"rustversion",
|
|
3864
|
+
"wasm-bindgen-macro",
|
|
3865
|
+
]
|
|
3866
|
+
|
|
3867
|
+
[[package]]
|
|
3868
|
+
name = "wasm-bindgen-backend"
|
|
3869
|
+
version = "0.2.100"
|
|
3870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3871
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
3872
|
+
dependencies = [
|
|
3873
|
+
"bumpalo",
|
|
3874
|
+
"log",
|
|
3875
|
+
"proc-macro2",
|
|
3876
|
+
"quote",
|
|
3877
|
+
"syn 2.0.87",
|
|
3878
|
+
"wasm-bindgen-shared",
|
|
3879
|
+
]
|
|
3880
|
+
|
|
3881
|
+
[[package]]
|
|
3882
|
+
name = "wasm-bindgen-macro"
|
|
3883
|
+
version = "0.2.100"
|
|
3884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3885
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
3886
|
+
dependencies = [
|
|
3887
|
+
"quote",
|
|
3888
|
+
"wasm-bindgen-macro-support",
|
|
3889
|
+
]
|
|
3890
|
+
|
|
3891
|
+
[[package]]
|
|
3892
|
+
name = "wasm-bindgen-macro-support"
|
|
3893
|
+
version = "0.2.100"
|
|
3894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3895
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
3896
|
+
dependencies = [
|
|
3897
|
+
"proc-macro2",
|
|
3898
|
+
"quote",
|
|
3899
|
+
"syn 2.0.87",
|
|
3900
|
+
"wasm-bindgen-backend",
|
|
3901
|
+
"wasm-bindgen-shared",
|
|
3902
|
+
]
|
|
3903
|
+
|
|
3904
|
+
[[package]]
|
|
3905
|
+
name = "wasm-bindgen-shared"
|
|
3906
|
+
version = "0.2.100"
|
|
3907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3908
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
3909
|
+
dependencies = [
|
|
3910
|
+
"unicode-ident",
|
|
3911
|
+
]
|
|
3912
|
+
|
|
3913
|
+
[[package]]
|
|
3914
|
+
name = "web-time"
|
|
3915
|
+
version = "1.1.0"
|
|
3916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3917
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3918
|
+
dependencies = [
|
|
3919
|
+
"js-sys",
|
|
3920
|
+
"wasm-bindgen",
|
|
3921
|
+
]
|
|
3922
|
+
|
|
3923
|
+
[[package]]
|
|
3924
|
+
name = "webpki-root-certs"
|
|
3925
|
+
version = "0.26.11"
|
|
3926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3927
|
+
checksum = "75c7f0ef91146ebfb530314f5f1d24528d7f0767efbfd31dce919275413e393e"
|
|
3928
|
+
dependencies = [
|
|
3929
|
+
"webpki-root-certs 1.0.0",
|
|
3930
|
+
]
|
|
3931
|
+
|
|
3932
|
+
[[package]]
|
|
3933
|
+
name = "webpki-root-certs"
|
|
3934
|
+
version = "1.0.0"
|
|
3935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3936
|
+
checksum = "01a83f7e1a9f8712695c03eabe9ed3fbca0feff0152f33f12593e5a6303cb1a4"
|
|
3937
|
+
dependencies = [
|
|
3938
|
+
"rustls-pki-types",
|
|
3939
|
+
]
|
|
3940
|
+
|
|
3941
|
+
[[package]]
|
|
3942
|
+
name = "webpki-roots"
|
|
3943
|
+
version = "0.26.11"
|
|
3944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3945
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
3946
|
+
dependencies = [
|
|
3947
|
+
"webpki-roots 1.0.0",
|
|
3948
|
+
]
|
|
3949
|
+
|
|
3950
|
+
[[package]]
|
|
3951
|
+
name = "webpki-roots"
|
|
3952
|
+
version = "1.0.0"
|
|
3953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3954
|
+
checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb"
|
|
3955
|
+
dependencies = [
|
|
3956
|
+
"rustls-pki-types",
|
|
3957
|
+
]
|
|
3958
|
+
|
|
3959
|
+
[[package]]
|
|
3960
|
+
name = "winapi"
|
|
3961
|
+
version = "0.3.9"
|
|
3962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3963
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3964
|
+
dependencies = [
|
|
3965
|
+
"winapi-i686-pc-windows-gnu",
|
|
3966
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3967
|
+
]
|
|
3968
|
+
|
|
3969
|
+
[[package]]
|
|
3970
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3971
|
+
version = "0.4.0"
|
|
3972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3973
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3974
|
+
|
|
3975
|
+
[[package]]
|
|
3976
|
+
name = "winapi-util"
|
|
3977
|
+
version = "0.1.9"
|
|
3978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3979
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
3980
|
+
dependencies = [
|
|
3981
|
+
"windows-sys 0.59.0",
|
|
3982
|
+
]
|
|
3983
|
+
|
|
3984
|
+
[[package]]
|
|
3985
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3986
|
+
version = "0.4.0"
|
|
3987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3988
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3989
|
+
|
|
3990
|
+
[[package]]
|
|
3991
|
+
name = "windows-core"
|
|
3992
|
+
version = "0.61.0"
|
|
3993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3994
|
+
checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
|
|
3995
|
+
dependencies = [
|
|
3996
|
+
"windows-implement",
|
|
3997
|
+
"windows-interface",
|
|
3998
|
+
"windows-link",
|
|
3999
|
+
"windows-result",
|
|
4000
|
+
"windows-strings",
|
|
4001
|
+
]
|
|
4002
|
+
|
|
4003
|
+
[[package]]
|
|
4004
|
+
name = "windows-implement"
|
|
4005
|
+
version = "0.60.0"
|
|
4006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4007
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
4008
|
+
dependencies = [
|
|
4009
|
+
"proc-macro2",
|
|
4010
|
+
"quote",
|
|
4011
|
+
"syn 2.0.87",
|
|
4012
|
+
]
|
|
4013
|
+
|
|
4014
|
+
[[package]]
|
|
4015
|
+
name = "windows-interface"
|
|
4016
|
+
version = "0.59.1"
|
|
4017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4018
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
4019
|
+
dependencies = [
|
|
4020
|
+
"proc-macro2",
|
|
4021
|
+
"quote",
|
|
4022
|
+
"syn 2.0.87",
|
|
4023
|
+
]
|
|
4024
|
+
|
|
4025
|
+
[[package]]
|
|
4026
|
+
name = "windows-link"
|
|
4027
|
+
version = "0.1.1"
|
|
4028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4029
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
4030
|
+
|
|
4031
|
+
[[package]]
|
|
4032
|
+
name = "windows-result"
|
|
4033
|
+
version = "0.3.2"
|
|
4034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4035
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
|
4036
|
+
dependencies = [
|
|
4037
|
+
"windows-link",
|
|
4038
|
+
]
|
|
4039
|
+
|
|
4040
|
+
[[package]]
|
|
4041
|
+
name = "windows-strings"
|
|
4042
|
+
version = "0.4.0"
|
|
4043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4044
|
+
checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
|
|
4045
|
+
dependencies = [
|
|
4046
|
+
"windows-link",
|
|
4047
|
+
]
|
|
4048
|
+
|
|
4049
|
+
[[package]]
|
|
4050
|
+
name = "windows-sys"
|
|
4051
|
+
version = "0.45.0"
|
|
4052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4053
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
4054
|
+
dependencies = [
|
|
4055
|
+
"windows-targets 0.42.2",
|
|
4056
|
+
]
|
|
4057
|
+
|
|
4058
|
+
[[package]]
|
|
4059
|
+
name = "windows-sys"
|
|
4060
|
+
version = "0.48.0"
|
|
4061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4062
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
4063
|
+
dependencies = [
|
|
4064
|
+
"windows-targets 0.48.5",
|
|
4065
|
+
]
|
|
4066
|
+
|
|
4067
|
+
[[package]]
|
|
4068
|
+
name = "windows-sys"
|
|
4069
|
+
version = "0.52.0"
|
|
4070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4071
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4072
|
+
dependencies = [
|
|
4073
|
+
"windows-targets 0.52.6",
|
|
4074
|
+
]
|
|
4075
|
+
|
|
4076
|
+
[[package]]
|
|
4077
|
+
name = "windows-sys"
|
|
4078
|
+
version = "0.59.0"
|
|
4079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4080
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
4081
|
+
dependencies = [
|
|
4082
|
+
"windows-targets 0.52.6",
|
|
4083
|
+
]
|
|
4084
|
+
|
|
4085
|
+
[[package]]
|
|
4086
|
+
name = "windows-targets"
|
|
4087
|
+
version = "0.42.2"
|
|
4088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4089
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
4090
|
+
dependencies = [
|
|
4091
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
4092
|
+
"windows_aarch64_msvc 0.42.2",
|
|
4093
|
+
"windows_i686_gnu 0.42.2",
|
|
4094
|
+
"windows_i686_msvc 0.42.2",
|
|
4095
|
+
"windows_x86_64_gnu 0.42.2",
|
|
4096
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
4097
|
+
"windows_x86_64_msvc 0.42.2",
|
|
4098
|
+
]
|
|
4099
|
+
|
|
4100
|
+
[[package]]
|
|
4101
|
+
name = "windows-targets"
|
|
4102
|
+
version = "0.48.5"
|
|
4103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4104
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
4105
|
+
dependencies = [
|
|
4106
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
4107
|
+
"windows_aarch64_msvc 0.48.5",
|
|
4108
|
+
"windows_i686_gnu 0.48.5",
|
|
4109
|
+
"windows_i686_msvc 0.48.5",
|
|
4110
|
+
"windows_x86_64_gnu 0.48.5",
|
|
4111
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
4112
|
+
"windows_x86_64_msvc 0.48.5",
|
|
4113
|
+
]
|
|
4114
|
+
|
|
4115
|
+
[[package]]
|
|
4116
|
+
name = "windows-targets"
|
|
4117
|
+
version = "0.52.6"
|
|
4118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4119
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
4120
|
+
dependencies = [
|
|
4121
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
4122
|
+
"windows_aarch64_msvc 0.52.6",
|
|
4123
|
+
"windows_i686_gnu 0.52.6",
|
|
4124
|
+
"windows_i686_gnullvm",
|
|
4125
|
+
"windows_i686_msvc 0.52.6",
|
|
4126
|
+
"windows_x86_64_gnu 0.52.6",
|
|
4127
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
4128
|
+
"windows_x86_64_msvc 0.52.6",
|
|
4129
|
+
]
|
|
4130
|
+
|
|
4131
|
+
[[package]]
|
|
4132
|
+
name = "windows_aarch64_gnullvm"
|
|
4133
|
+
version = "0.42.2"
|
|
4134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4135
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
4136
|
+
|
|
4137
|
+
[[package]]
|
|
4138
|
+
name = "windows_aarch64_gnullvm"
|
|
4139
|
+
version = "0.48.5"
|
|
4140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4141
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
4142
|
+
|
|
4143
|
+
[[package]]
|
|
4144
|
+
name = "windows_aarch64_gnullvm"
|
|
4145
|
+
version = "0.52.6"
|
|
4146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4147
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4148
|
+
|
|
4149
|
+
[[package]]
|
|
4150
|
+
name = "windows_aarch64_msvc"
|
|
4151
|
+
version = "0.42.2"
|
|
4152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4153
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
4154
|
+
|
|
4155
|
+
[[package]]
|
|
4156
|
+
name = "windows_aarch64_msvc"
|
|
4157
|
+
version = "0.48.5"
|
|
4158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4159
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
4160
|
+
|
|
4161
|
+
[[package]]
|
|
4162
|
+
name = "windows_aarch64_msvc"
|
|
4163
|
+
version = "0.52.6"
|
|
4164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4165
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4166
|
+
|
|
4167
|
+
[[package]]
|
|
4168
|
+
name = "windows_i686_gnu"
|
|
4169
|
+
version = "0.42.2"
|
|
4170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4171
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
4172
|
+
|
|
4173
|
+
[[package]]
|
|
4174
|
+
name = "windows_i686_gnu"
|
|
4175
|
+
version = "0.48.5"
|
|
4176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4177
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
4178
|
+
|
|
4179
|
+
[[package]]
|
|
4180
|
+
name = "windows_i686_gnu"
|
|
4181
|
+
version = "0.52.6"
|
|
4182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4183
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4184
|
+
|
|
4185
|
+
[[package]]
|
|
4186
|
+
name = "windows_i686_gnullvm"
|
|
4187
|
+
version = "0.52.6"
|
|
4188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4189
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4190
|
+
|
|
4191
|
+
[[package]]
|
|
4192
|
+
name = "windows_i686_msvc"
|
|
4193
|
+
version = "0.42.2"
|
|
4194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4195
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
4196
|
+
|
|
4197
|
+
[[package]]
|
|
4198
|
+
name = "windows_i686_msvc"
|
|
4199
|
+
version = "0.48.5"
|
|
4200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4201
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
4202
|
+
|
|
4203
|
+
[[package]]
|
|
4204
|
+
name = "windows_i686_msvc"
|
|
4205
|
+
version = "0.52.6"
|
|
4206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4207
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4208
|
+
|
|
4209
|
+
[[package]]
|
|
4210
|
+
name = "windows_x86_64_gnu"
|
|
4211
|
+
version = "0.42.2"
|
|
4212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4213
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
4214
|
+
|
|
4215
|
+
[[package]]
|
|
4216
|
+
name = "windows_x86_64_gnu"
|
|
4217
|
+
version = "0.48.5"
|
|
4218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4219
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
4220
|
+
|
|
4221
|
+
[[package]]
|
|
4222
|
+
name = "windows_x86_64_gnu"
|
|
4223
|
+
version = "0.52.6"
|
|
4224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4225
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4226
|
+
|
|
4227
|
+
[[package]]
|
|
4228
|
+
name = "windows_x86_64_gnullvm"
|
|
4229
|
+
version = "0.42.2"
|
|
4230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4231
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
4232
|
+
|
|
4233
|
+
[[package]]
|
|
4234
|
+
name = "windows_x86_64_gnullvm"
|
|
4235
|
+
version = "0.48.5"
|
|
4236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4237
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
4238
|
+
|
|
4239
|
+
[[package]]
|
|
4240
|
+
name = "windows_x86_64_gnullvm"
|
|
4241
|
+
version = "0.52.6"
|
|
4242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4243
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4244
|
+
|
|
4245
|
+
[[package]]
|
|
4246
|
+
name = "windows_x86_64_msvc"
|
|
4247
|
+
version = "0.42.2"
|
|
4248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4249
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
4250
|
+
|
|
4251
|
+
[[package]]
|
|
4252
|
+
name = "windows_x86_64_msvc"
|
|
4253
|
+
version = "0.48.5"
|
|
4254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4255
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
4256
|
+
|
|
4257
|
+
[[package]]
|
|
4258
|
+
name = "windows_x86_64_msvc"
|
|
4259
|
+
version = "0.52.6"
|
|
4260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4261
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4262
|
+
|
|
4263
|
+
[[package]]
|
|
4264
|
+
name = "winnow"
|
|
4265
|
+
version = "0.6.20"
|
|
4266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4267
|
+
checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
|
|
4268
|
+
dependencies = [
|
|
4269
|
+
"memchr",
|
|
4270
|
+
]
|
|
4271
|
+
|
|
4272
|
+
[[package]]
|
|
4273
|
+
name = "wit-bindgen-rt"
|
|
4274
|
+
version = "0.39.0"
|
|
4275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4276
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
4277
|
+
dependencies = [
|
|
4278
|
+
"bitflags",
|
|
4279
|
+
]
|
|
4280
|
+
|
|
4281
|
+
[[package]]
|
|
4282
|
+
name = "write16"
|
|
4283
|
+
version = "1.0.0"
|
|
4284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4285
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
4286
|
+
|
|
4287
|
+
[[package]]
|
|
4288
|
+
name = "writeable"
|
|
4289
|
+
version = "0.5.5"
|
|
4290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4291
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
4292
|
+
|
|
4293
|
+
[[package]]
|
|
4294
|
+
name = "x509-parser"
|
|
4295
|
+
version = "0.16.0"
|
|
4296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4297
|
+
checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69"
|
|
4298
|
+
dependencies = [
|
|
4299
|
+
"asn1-rs",
|
|
4300
|
+
"data-encoding",
|
|
4301
|
+
"der-parser",
|
|
4302
|
+
"lazy_static",
|
|
4303
|
+
"nom",
|
|
4304
|
+
"oid-registry",
|
|
4305
|
+
"rusticata-macros",
|
|
4306
|
+
"thiserror 1.0.64",
|
|
4307
|
+
"time",
|
|
4308
|
+
]
|
|
4309
|
+
|
|
4310
|
+
[[package]]
|
|
4311
|
+
name = "yoke"
|
|
4312
|
+
version = "0.7.5"
|
|
4313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4314
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
4315
|
+
dependencies = [
|
|
4316
|
+
"serde",
|
|
4317
|
+
"stable_deref_trait",
|
|
4318
|
+
"yoke-derive",
|
|
4319
|
+
"zerofrom",
|
|
4320
|
+
]
|
|
4321
|
+
|
|
4322
|
+
[[package]]
|
|
4323
|
+
name = "yoke-derive"
|
|
4324
|
+
version = "0.7.5"
|
|
4325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4326
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
4327
|
+
dependencies = [
|
|
4328
|
+
"proc-macro2",
|
|
4329
|
+
"quote",
|
|
4330
|
+
"syn 2.0.87",
|
|
4331
|
+
"synstructure",
|
|
4332
|
+
]
|
|
4333
|
+
|
|
4334
|
+
[[package]]
|
|
4335
|
+
name = "zenoh"
|
|
4336
|
+
version = "1.3.4"
|
|
4337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4338
|
+
checksum = "a2efb72fce1cf299cdd716ec9b300c16952d82594910629eb13c8dd1f357a2a3"
|
|
4339
|
+
dependencies = [
|
|
4340
|
+
"ahash",
|
|
4341
|
+
"arc-swap",
|
|
4342
|
+
"async-trait",
|
|
4343
|
+
"bytes",
|
|
4344
|
+
"flume",
|
|
4345
|
+
"futures",
|
|
4346
|
+
"git-version",
|
|
4347
|
+
"itertools",
|
|
4348
|
+
"json5",
|
|
4349
|
+
"lazy_static",
|
|
4350
|
+
"nonempty-collections",
|
|
4351
|
+
"once_cell",
|
|
4352
|
+
"paste",
|
|
4353
|
+
"petgraph",
|
|
4354
|
+
"phf",
|
|
4355
|
+
"rand 0.8.5",
|
|
4356
|
+
"ref-cast",
|
|
4357
|
+
"rustc_version",
|
|
4358
|
+
"serde",
|
|
4359
|
+
"serde_json",
|
|
4360
|
+
"socket2",
|
|
4361
|
+
"tokio",
|
|
4362
|
+
"tokio-util",
|
|
4363
|
+
"tracing",
|
|
4364
|
+
"uhlc",
|
|
4365
|
+
"vec_map",
|
|
4366
|
+
"zenoh-buffers",
|
|
4367
|
+
"zenoh-codec",
|
|
4368
|
+
"zenoh-collections",
|
|
4369
|
+
"zenoh-config",
|
|
4370
|
+
"zenoh-core",
|
|
4371
|
+
"zenoh-keyexpr",
|
|
4372
|
+
"zenoh-link",
|
|
4373
|
+
"zenoh-macros",
|
|
4374
|
+
"zenoh-plugin-trait",
|
|
4375
|
+
"zenoh-protocol",
|
|
4376
|
+
"zenoh-result",
|
|
4377
|
+
"zenoh-runtime",
|
|
4378
|
+
"zenoh-sync",
|
|
4379
|
+
"zenoh-task",
|
|
4380
|
+
"zenoh-transport",
|
|
4381
|
+
"zenoh-util",
|
|
4382
|
+
]
|
|
4383
|
+
|
|
4384
|
+
[[package]]
|
|
4385
|
+
name = "zenoh-buffers"
|
|
4386
|
+
version = "1.3.4"
|
|
4387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4388
|
+
checksum = "8842fecec1706cdf38d785feb63d1129278dbebfbd81bf50d54775b1593940bf"
|
|
4389
|
+
dependencies = [
|
|
4390
|
+
"zenoh-collections",
|
|
4391
|
+
]
|
|
4392
|
+
|
|
4393
|
+
[[package]]
|
|
4394
|
+
name = "zenoh-codec"
|
|
4395
|
+
version = "1.3.4"
|
|
4396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4397
|
+
checksum = "a8c72cec335108131a1fd1aa5ac31423eb0b0e66ae16873890f79a5453c6d174"
|
|
4398
|
+
dependencies = [
|
|
4399
|
+
"tracing",
|
|
4400
|
+
"uhlc",
|
|
4401
|
+
"zenoh-buffers",
|
|
4402
|
+
"zenoh-protocol",
|
|
4403
|
+
]
|
|
4404
|
+
|
|
4405
|
+
[[package]]
|
|
4406
|
+
name = "zenoh-collections"
|
|
4407
|
+
version = "1.3.4"
|
|
4408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4409
|
+
checksum = "79657ff5c4979a53b11ab96cd83f714245644eba75d139aa7ce370df3125223d"
|
|
4410
|
+
dependencies = [
|
|
4411
|
+
"ahash",
|
|
4412
|
+
]
|
|
4413
|
+
|
|
4414
|
+
[[package]]
|
|
4415
|
+
name = "zenoh-config"
|
|
4416
|
+
version = "1.3.4"
|
|
4417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4418
|
+
checksum = "2ef77c529f5aca77f8ff6947ce7e074bda2fb88a2f49b43e5a59430cde9f3b1f"
|
|
4419
|
+
dependencies = [
|
|
4420
|
+
"json5",
|
|
4421
|
+
"nonempty-collections",
|
|
4422
|
+
"num_cpus",
|
|
4423
|
+
"secrecy",
|
|
4424
|
+
"serde",
|
|
4425
|
+
"serde_json",
|
|
4426
|
+
"serde_with",
|
|
4427
|
+
"serde_yaml",
|
|
4428
|
+
"tracing",
|
|
4429
|
+
"uhlc",
|
|
4430
|
+
"validated_struct",
|
|
4431
|
+
"zenoh-core",
|
|
4432
|
+
"zenoh-keyexpr",
|
|
4433
|
+
"zenoh-macros",
|
|
4434
|
+
"zenoh-protocol",
|
|
4435
|
+
"zenoh-result",
|
|
4436
|
+
"zenoh-util",
|
|
4437
|
+
]
|
|
4438
|
+
|
|
4439
|
+
[[package]]
|
|
4440
|
+
name = "zenoh-core"
|
|
4441
|
+
version = "1.3.4"
|
|
4442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4443
|
+
checksum = "bad8f92497145fcf03e96062f6d0172a6a29824f79ccfc2cd05737249f5a3342"
|
|
4444
|
+
dependencies = [
|
|
4445
|
+
"lazy_static",
|
|
4446
|
+
"tokio",
|
|
4447
|
+
"zenoh-result",
|
|
4448
|
+
"zenoh-runtime",
|
|
4449
|
+
]
|
|
4450
|
+
|
|
4451
|
+
[[package]]
|
|
4452
|
+
name = "zenoh-crypto"
|
|
4453
|
+
version = "1.3.4"
|
|
4454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4455
|
+
checksum = "51be3cdbc7224d3358777c08cc2b7f81f5a80a23bb30a76c522180c6d78d6dd2"
|
|
4456
|
+
dependencies = [
|
|
4457
|
+
"aes",
|
|
4458
|
+
"hmac",
|
|
4459
|
+
"rand 0.8.5",
|
|
4460
|
+
"rand_chacha 0.3.1",
|
|
4461
|
+
"sha3",
|
|
4462
|
+
"zenoh-result",
|
|
4463
|
+
]
|
|
4464
|
+
|
|
4465
|
+
[[package]]
|
|
4466
|
+
name = "zenoh-keyexpr"
|
|
4467
|
+
version = "1.3.4"
|
|
4468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4469
|
+
checksum = "1abcafb3db8374ce1ff85540a16439b87676283b72a54c8976140c94d61e7570"
|
|
4470
|
+
dependencies = [
|
|
4471
|
+
"getrandom 0.2.15",
|
|
4472
|
+
"hashbrown 0.14.5",
|
|
4473
|
+
"keyed-set",
|
|
4474
|
+
"rand 0.8.5",
|
|
4475
|
+
"schemars",
|
|
4476
|
+
"serde",
|
|
4477
|
+
"token-cell",
|
|
4478
|
+
"zenoh-result",
|
|
4479
|
+
]
|
|
4480
|
+
|
|
4481
|
+
[[package]]
|
|
4482
|
+
name = "zenoh-link"
|
|
4483
|
+
version = "1.3.4"
|
|
4484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4485
|
+
checksum = "7227527cf2eba60bfc2156cdd2c314922a6cfd39f94882cc3942691186cacca5"
|
|
4486
|
+
dependencies = [
|
|
4487
|
+
"zenoh-config",
|
|
4488
|
+
"zenoh-link-commons",
|
|
4489
|
+
"zenoh-link-quic",
|
|
4490
|
+
"zenoh-link-tcp",
|
|
4491
|
+
"zenoh-link-tls",
|
|
4492
|
+
"zenoh-link-udp",
|
|
4493
|
+
"zenoh-link-unixsock_stream",
|
|
4494
|
+
"zenoh-link-ws",
|
|
4495
|
+
"zenoh-protocol",
|
|
4496
|
+
"zenoh-result",
|
|
4497
|
+
]
|
|
4498
|
+
|
|
4499
|
+
[[package]]
|
|
4500
|
+
name = "zenoh-link-commons"
|
|
4501
|
+
version = "1.3.4"
|
|
4502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4503
|
+
checksum = "e2966132e2478f23d2cdc4359f22e7616b51212d67f9c7e60cd597b68dfce64a"
|
|
4504
|
+
dependencies = [
|
|
4505
|
+
"async-trait",
|
|
4506
|
+
"flume",
|
|
4507
|
+
"futures",
|
|
4508
|
+
"rustls",
|
|
4509
|
+
"rustls-webpki 0.102.8",
|
|
4510
|
+
"serde",
|
|
4511
|
+
"time",
|
|
4512
|
+
"tokio",
|
|
4513
|
+
"tokio-util",
|
|
4514
|
+
"tracing",
|
|
4515
|
+
"zenoh-buffers",
|
|
4516
|
+
"zenoh-codec",
|
|
4517
|
+
"zenoh-core",
|
|
4518
|
+
"zenoh-protocol",
|
|
4519
|
+
"zenoh-result",
|
|
4520
|
+
"zenoh-runtime",
|
|
4521
|
+
"zenoh-util",
|
|
4522
|
+
]
|
|
4523
|
+
|
|
4524
|
+
[[package]]
|
|
4525
|
+
name = "zenoh-link-quic"
|
|
4526
|
+
version = "1.3.4"
|
|
4527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4528
|
+
checksum = "5169f109688fb592a6822860fc6e8e28b581a56dbf2e5d63908560795d4c5633"
|
|
4529
|
+
dependencies = [
|
|
4530
|
+
"async-trait",
|
|
4531
|
+
"base64 0.22.1",
|
|
4532
|
+
"quinn",
|
|
4533
|
+
"rustls",
|
|
4534
|
+
"rustls-pemfile",
|
|
4535
|
+
"rustls-pki-types",
|
|
4536
|
+
"rustls-webpki 0.102.8",
|
|
4537
|
+
"secrecy",
|
|
4538
|
+
"time",
|
|
4539
|
+
"tokio",
|
|
4540
|
+
"tokio-util",
|
|
4541
|
+
"tracing",
|
|
4542
|
+
"webpki-roots 0.26.11",
|
|
4543
|
+
"x509-parser",
|
|
4544
|
+
"zenoh-config",
|
|
4545
|
+
"zenoh-core",
|
|
4546
|
+
"zenoh-link-commons",
|
|
4547
|
+
"zenoh-protocol",
|
|
4548
|
+
"zenoh-result",
|
|
4549
|
+
"zenoh-util",
|
|
4550
|
+
]
|
|
4551
|
+
|
|
4552
|
+
[[package]]
|
|
4553
|
+
name = "zenoh-link-tcp"
|
|
4554
|
+
version = "1.3.4"
|
|
4555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4556
|
+
checksum = "308095b785d8609ee6372d3a57753a13a506141f86b4645f43a5fb1df3c6b9b0"
|
|
4557
|
+
dependencies = [
|
|
4558
|
+
"async-trait",
|
|
4559
|
+
"socket2",
|
|
4560
|
+
"tokio",
|
|
4561
|
+
"tokio-util",
|
|
4562
|
+
"tracing",
|
|
4563
|
+
"zenoh-config",
|
|
4564
|
+
"zenoh-core",
|
|
4565
|
+
"zenoh-link-commons",
|
|
4566
|
+
"zenoh-protocol",
|
|
4567
|
+
"zenoh-result",
|
|
4568
|
+
]
|
|
4569
|
+
|
|
4570
|
+
[[package]]
|
|
4571
|
+
name = "zenoh-link-tls"
|
|
4572
|
+
version = "1.3.4"
|
|
4573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4574
|
+
checksum = "3b50ce1925acc304660e2fbd7a28b03835bf8a6049f9c438c613a89cecdc36a5"
|
|
4575
|
+
dependencies = [
|
|
4576
|
+
"async-trait",
|
|
4577
|
+
"base64 0.22.1",
|
|
4578
|
+
"rustls",
|
|
4579
|
+
"rustls-pemfile",
|
|
4580
|
+
"rustls-pki-types",
|
|
4581
|
+
"rustls-webpki 0.102.8",
|
|
4582
|
+
"secrecy",
|
|
4583
|
+
"socket2",
|
|
4584
|
+
"time",
|
|
4585
|
+
"tls-listener",
|
|
4586
|
+
"tokio",
|
|
4587
|
+
"tokio-rustls",
|
|
4588
|
+
"tokio-util",
|
|
4589
|
+
"tracing",
|
|
4590
|
+
"webpki-roots 0.26.11",
|
|
4591
|
+
"x509-parser",
|
|
4592
|
+
"zenoh-config",
|
|
4593
|
+
"zenoh-core",
|
|
4594
|
+
"zenoh-link-commons",
|
|
4595
|
+
"zenoh-protocol",
|
|
4596
|
+
"zenoh-result",
|
|
4597
|
+
"zenoh-runtime",
|
|
4598
|
+
]
|
|
4599
|
+
|
|
4600
|
+
[[package]]
|
|
4601
|
+
name = "zenoh-link-udp"
|
|
4602
|
+
version = "1.3.4"
|
|
4603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4604
|
+
checksum = "8417bffa57fd8cb5d0845dd1abcfe370ed8f61753686b58eef998254e7b3e7c6"
|
|
4605
|
+
dependencies = [
|
|
4606
|
+
"async-trait",
|
|
4607
|
+
"socket2",
|
|
4608
|
+
"tokio",
|
|
4609
|
+
"tokio-util",
|
|
4610
|
+
"tracing",
|
|
4611
|
+
"zenoh-buffers",
|
|
4612
|
+
"zenoh-core",
|
|
4613
|
+
"zenoh-link-commons",
|
|
4614
|
+
"zenoh-protocol",
|
|
4615
|
+
"zenoh-result",
|
|
4616
|
+
"zenoh-sync",
|
|
4617
|
+
"zenoh-util",
|
|
4618
|
+
]
|
|
4619
|
+
|
|
4620
|
+
[[package]]
|
|
4621
|
+
name = "zenoh-link-unixsock_stream"
|
|
4622
|
+
version = "1.3.4"
|
|
4623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4624
|
+
checksum = "7077ee5c33d2eb52d6ee7873927ad8a732c8c8a1b50c6171b96ddf37cfcb1ada"
|
|
4625
|
+
dependencies = [
|
|
4626
|
+
"async-trait",
|
|
4627
|
+
"nix",
|
|
4628
|
+
"tokio",
|
|
4629
|
+
"tokio-util",
|
|
4630
|
+
"tracing",
|
|
4631
|
+
"uuid",
|
|
4632
|
+
"zenoh-core",
|
|
4633
|
+
"zenoh-link-commons",
|
|
4634
|
+
"zenoh-protocol",
|
|
4635
|
+
"zenoh-result",
|
|
4636
|
+
"zenoh-runtime",
|
|
4637
|
+
]
|
|
4638
|
+
|
|
4639
|
+
[[package]]
|
|
4640
|
+
name = "zenoh-link-ws"
|
|
4641
|
+
version = "1.3.4"
|
|
4642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4643
|
+
checksum = "7b5e7b13d5c1b67a2202f6d2d225d037c9ec15f6c12a20f7af99d4a1f0f3fbd0"
|
|
4644
|
+
dependencies = [
|
|
4645
|
+
"async-trait",
|
|
4646
|
+
"futures-util",
|
|
4647
|
+
"tokio",
|
|
4648
|
+
"tokio-tungstenite",
|
|
4649
|
+
"tokio-util",
|
|
4650
|
+
"tracing",
|
|
4651
|
+
"url",
|
|
4652
|
+
"zenoh-core",
|
|
4653
|
+
"zenoh-link-commons",
|
|
4654
|
+
"zenoh-protocol",
|
|
4655
|
+
"zenoh-result",
|
|
4656
|
+
"zenoh-runtime",
|
|
4657
|
+
"zenoh-util",
|
|
4658
|
+
]
|
|
4659
|
+
|
|
4660
|
+
[[package]]
|
|
4661
|
+
name = "zenoh-macros"
|
|
4662
|
+
version = "1.3.4"
|
|
4663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4664
|
+
checksum = "dcd9d20407128f32b02032737af0e26a7960d11e1db8a3e1b88c14675b851a01"
|
|
4665
|
+
dependencies = [
|
|
4666
|
+
"proc-macro2",
|
|
4667
|
+
"quote",
|
|
4668
|
+
"syn 2.0.87",
|
|
4669
|
+
"zenoh-keyexpr",
|
|
4670
|
+
]
|
|
4671
|
+
|
|
4672
|
+
[[package]]
|
|
4673
|
+
name = "zenoh-plugin-trait"
|
|
4674
|
+
version = "1.3.4"
|
|
4675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4676
|
+
checksum = "3a331b76b19c3153e446b6a3d19eee5ef7dae8fddbed3b548b0e8b875f3bf480"
|
|
4677
|
+
dependencies = [
|
|
4678
|
+
"git-version",
|
|
4679
|
+
"libloading",
|
|
4680
|
+
"serde",
|
|
4681
|
+
"tracing",
|
|
4682
|
+
"zenoh-config",
|
|
4683
|
+
"zenoh-keyexpr",
|
|
4684
|
+
"zenoh-macros",
|
|
4685
|
+
"zenoh-result",
|
|
4686
|
+
"zenoh-util",
|
|
4687
|
+
]
|
|
4688
|
+
|
|
4689
|
+
[[package]]
|
|
4690
|
+
name = "zenoh-protocol"
|
|
4691
|
+
version = "1.3.4"
|
|
4692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4693
|
+
checksum = "524ba254d2f2046a02b4d61cf002a91575c190139fb43f5799875dc410f9dc52"
|
|
4694
|
+
dependencies = [
|
|
4695
|
+
"const_format",
|
|
4696
|
+
"rand 0.8.5",
|
|
4697
|
+
"serde",
|
|
4698
|
+
"uhlc",
|
|
4699
|
+
"zenoh-buffers",
|
|
4700
|
+
"zenoh-keyexpr",
|
|
4701
|
+
"zenoh-result",
|
|
4702
|
+
]
|
|
4703
|
+
|
|
4704
|
+
[[package]]
|
|
4705
|
+
name = "zenoh-result"
|
|
4706
|
+
version = "1.3.4"
|
|
4707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4708
|
+
checksum = "6ea304c480ce94299e33a272d427e39ca4e7571df54781944ae9f61d040a2473"
|
|
4709
|
+
dependencies = [
|
|
4710
|
+
"anyhow",
|
|
4711
|
+
]
|
|
4712
|
+
|
|
4713
|
+
[[package]]
|
|
4714
|
+
name = "zenoh-runtime"
|
|
4715
|
+
version = "1.3.4"
|
|
4716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4717
|
+
checksum = "9c27f670253d4a9b50fef9c18719b6f1cc6e2a14927edb1f12a0e9d32b82883c"
|
|
4718
|
+
dependencies = [
|
|
4719
|
+
"lazy_static",
|
|
4720
|
+
"ron",
|
|
4721
|
+
"serde",
|
|
4722
|
+
"tokio",
|
|
4723
|
+
"tracing",
|
|
4724
|
+
"zenoh-macros",
|
|
4725
|
+
"zenoh-result",
|
|
4726
|
+
]
|
|
4727
|
+
|
|
4728
|
+
[[package]]
|
|
4729
|
+
name = "zenoh-sync"
|
|
4730
|
+
version = "1.3.4"
|
|
4731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4732
|
+
checksum = "88b405394b98685284bfb0a9f57eade1628313fdaf0ee8d4bb85ae1800d5bcc6"
|
|
4733
|
+
dependencies = [
|
|
4734
|
+
"arc-swap",
|
|
4735
|
+
"event-listener",
|
|
4736
|
+
"futures",
|
|
4737
|
+
"tokio",
|
|
4738
|
+
"zenoh-buffers",
|
|
4739
|
+
"zenoh-collections",
|
|
4740
|
+
"zenoh-core",
|
|
4741
|
+
]
|
|
4742
|
+
|
|
4743
|
+
[[package]]
|
|
4744
|
+
name = "zenoh-task"
|
|
4745
|
+
version = "1.3.4"
|
|
4746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4747
|
+
checksum = "8b0d2fa950b0f821449ab725f4f89a33d360f1e9a8f4858b5551dfc065a3b1e3"
|
|
4748
|
+
dependencies = [
|
|
4749
|
+
"futures",
|
|
4750
|
+
"tokio",
|
|
4751
|
+
"tokio-util",
|
|
4752
|
+
"tracing",
|
|
4753
|
+
"zenoh-core",
|
|
4754
|
+
"zenoh-runtime",
|
|
4755
|
+
]
|
|
4756
|
+
|
|
4757
|
+
[[package]]
|
|
4758
|
+
name = "zenoh-transport"
|
|
4759
|
+
version = "1.3.4"
|
|
4760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4761
|
+
checksum = "d76839964ebe311fde4c3a7e8847b82ddbeb2c5822253c3037e5bebeed98e8da"
|
|
4762
|
+
dependencies = [
|
|
4763
|
+
"async-trait",
|
|
4764
|
+
"crossbeam-utils",
|
|
4765
|
+
"flume",
|
|
4766
|
+
"lazy_static",
|
|
4767
|
+
"lz4_flex",
|
|
4768
|
+
"paste",
|
|
4769
|
+
"rand 0.8.5",
|
|
4770
|
+
"ringbuffer-spsc",
|
|
4771
|
+
"rsa",
|
|
4772
|
+
"serde",
|
|
4773
|
+
"sha3",
|
|
4774
|
+
"tokio",
|
|
4775
|
+
"tokio-util",
|
|
4776
|
+
"tracing",
|
|
4777
|
+
"zenoh-buffers",
|
|
4778
|
+
"zenoh-codec",
|
|
4779
|
+
"zenoh-config",
|
|
4780
|
+
"zenoh-core",
|
|
4781
|
+
"zenoh-crypto",
|
|
4782
|
+
"zenoh-link",
|
|
4783
|
+
"zenoh-protocol",
|
|
4784
|
+
"zenoh-result",
|
|
4785
|
+
"zenoh-runtime",
|
|
4786
|
+
"zenoh-sync",
|
|
4787
|
+
"zenoh-task",
|
|
4788
|
+
"zenoh-util",
|
|
4789
|
+
]
|
|
4790
|
+
|
|
4791
|
+
[[package]]
|
|
4792
|
+
name = "zenoh-util"
|
|
4793
|
+
version = "1.3.4"
|
|
4794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4795
|
+
checksum = "009e5a85088e52a3af410b5f6bbd4044c68d7bf0e0de282d9643b9338d3e5848"
|
|
4796
|
+
dependencies = [
|
|
4797
|
+
"async-trait",
|
|
4798
|
+
"const_format",
|
|
4799
|
+
"flume",
|
|
4800
|
+
"home",
|
|
4801
|
+
"humantime",
|
|
4802
|
+
"lazy_static",
|
|
4803
|
+
"libc",
|
|
4804
|
+
"libloading",
|
|
4805
|
+
"pnet_datalink",
|
|
4806
|
+
"serde",
|
|
4807
|
+
"serde_json",
|
|
4808
|
+
"shellexpand",
|
|
4809
|
+
"tokio",
|
|
4810
|
+
"tracing",
|
|
4811
|
+
"tracing-subscriber",
|
|
4812
|
+
"winapi",
|
|
4813
|
+
"zenoh-core",
|
|
4814
|
+
"zenoh-result",
|
|
4815
|
+
]
|
|
4816
|
+
|
|
4817
|
+
[[package]]
|
|
4818
|
+
name = "zerocopy"
|
|
4819
|
+
version = "0.7.35"
|
|
4820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4821
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
4822
|
+
dependencies = [
|
|
4823
|
+
"zerocopy-derive 0.7.35",
|
|
4824
|
+
]
|
|
4825
|
+
|
|
4826
|
+
[[package]]
|
|
4827
|
+
name = "zerocopy"
|
|
4828
|
+
version = "0.8.25"
|
|
4829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4830
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
|
4831
|
+
dependencies = [
|
|
4832
|
+
"zerocopy-derive 0.8.25",
|
|
4833
|
+
]
|
|
4834
|
+
|
|
4835
|
+
[[package]]
|
|
4836
|
+
name = "zerocopy-derive"
|
|
4837
|
+
version = "0.7.35"
|
|
4838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4839
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
4840
|
+
dependencies = [
|
|
4841
|
+
"proc-macro2",
|
|
4842
|
+
"quote",
|
|
4843
|
+
"syn 2.0.87",
|
|
4844
|
+
]
|
|
4845
|
+
|
|
4846
|
+
[[package]]
|
|
4847
|
+
name = "zerocopy-derive"
|
|
4848
|
+
version = "0.8.25"
|
|
4849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4850
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
|
4851
|
+
dependencies = [
|
|
4852
|
+
"proc-macro2",
|
|
4853
|
+
"quote",
|
|
4854
|
+
"syn 2.0.87",
|
|
4855
|
+
]
|
|
4856
|
+
|
|
4857
|
+
[[package]]
|
|
4858
|
+
name = "zerofrom"
|
|
4859
|
+
version = "0.1.6"
|
|
4860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4861
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4862
|
+
dependencies = [
|
|
4863
|
+
"zerofrom-derive",
|
|
4864
|
+
]
|
|
4865
|
+
|
|
4866
|
+
[[package]]
|
|
4867
|
+
name = "zerofrom-derive"
|
|
4868
|
+
version = "0.1.6"
|
|
4869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4870
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4871
|
+
dependencies = [
|
|
4872
|
+
"proc-macro2",
|
|
4873
|
+
"quote",
|
|
4874
|
+
"syn 2.0.87",
|
|
4875
|
+
"synstructure",
|
|
4876
|
+
]
|
|
4877
|
+
|
|
4878
|
+
[[package]]
|
|
4879
|
+
name = "zeroize"
|
|
4880
|
+
version = "1.8.1"
|
|
4881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4882
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
4883
|
+
|
|
4884
|
+
[[package]]
|
|
4885
|
+
name = "zerovec"
|
|
4886
|
+
version = "0.10.4"
|
|
4887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4888
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
4889
|
+
dependencies = [
|
|
4890
|
+
"yoke",
|
|
4891
|
+
"zerofrom",
|
|
4892
|
+
"zerovec-derive",
|
|
4893
|
+
]
|
|
4894
|
+
|
|
4895
|
+
[[package]]
|
|
4896
|
+
name = "zerovec-derive"
|
|
4897
|
+
version = "0.10.3"
|
|
4898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4899
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
4900
|
+
dependencies = [
|
|
4901
|
+
"proc-macro2",
|
|
4902
|
+
"quote",
|
|
4903
|
+
"syn 2.0.87",
|
|
4904
|
+
]
|